Skip to content

Commit

Permalink
[dq] Fix evaluation in dq (#6634)
Browse files Browse the repository at this point in the history
  • Loading branch information
rvu1024 authored Jul 12, 2024
1 parent e31f01c commit 9d5b4e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class TDqDataProviderSource: public TDataProviderBase {
return CanBuildResultImpl(cons.Cast().Input().Ref(), visited);
}

if (!node.IsComposable()) {
if (!node.GetTypeAnn()->IsComposable()) {
return false;
}

Expand Down
2 changes: 1 addition & 1 deletion ydb/library/yql/providers/yt/provider/yql_yt_helpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ bool IsYtIsolatedLambdaImpl(const TExprNode& lambdaBody, TSyncMap& syncList, TSt
return true;
}

if (auto maybeContent = TMaybeNode<TDqReadWideWrap>(&lambdaBody)) {
if (auto maybeContent = TMaybeNode<TDqReadWrapBase>(&lambdaBody)) {
if (!supportsDq) {
return false;
}
Expand Down

0 comments on commit 9d5b4e2

Please sign in to comment.