@@ -12,14 +12,14 @@ inline TRowPattern ConvertPattern(const TExprNode::TPtr& pattern, TExprContext &
12
12
for (const auto & factor: term->Children ()) {
13
13
YQL_ENSURE (factor->ChildrenSize () == 6 , " Expect 6 args" );
14
14
result.back ().push_back (TRowPatternFactor{
15
- factor->ChildRef (0 )->IsAtom () ?
16
- TRowPatternPrimary (TString (factor->ChildRef (0 )->Content ())) :
17
- ConvertPattern (factor->ChildRef (0 ), ctx, nestingLevel + 1 ),
18
- FromString<ui64>(factor->ChildRef (1 )->Content ()),
19
- FromString<ui64>(factor->ChildRef (2 )->Content ()),
20
- FromString<bool >(factor->ChildRef (3 )->Content ()),
21
- FromString<bool >(factor->ChildRef (4 )->Content ()),
22
- FromString<bool >(factor->ChildRef (5 )->Content ())
15
+ factor->ChildPtr (0 )->IsAtom () ?
16
+ TRowPatternPrimary (TString (factor->ChildPtr (0 )->Content ())) :
17
+ ConvertPattern (factor->ChildPtr (0 ), ctx, nestingLevel + 1 ),
18
+ FromString<ui64>(factor->ChildPtr (1 )->Content ()),
19
+ FromString<ui64>(factor->ChildPtr (2 )->Content ()),
20
+ FromString<bool >(factor->ChildPtr (3 )->Content ()),
21
+ FromString<bool >(factor->ChildPtr (4 )->Content ()),
22
+ FromString<bool >(factor->ChildPtr (5 )->Content ())
23
23
});
24
24
}
25
25
}
0 commit comments