aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorudovichenko-r <rvu@ydb.tech>2023-10-24 22:51:44 +0300
committerudovichenko-r <rvu@ydb.tech>2023-10-24 23:19:07 +0300
commitad68a058431fc177c5df5528111d43a270988bec (patch)
tree1942112ea9ab58c57c68556b4482b114a5683589
parent8d5a2acc69409f13d467bf8d6caba6f18f7c7253 (diff)
downloadydb-ad68a058431fc177c5df5528111d43a270988bec.tar.gz
[yql] Fix YQL-16931
-rw-r--r--ydb/library/yql/providers/yt/provider/yql_yt_helpers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/library/yql/providers/yt/provider/yql_yt_helpers.cpp b/ydb/library/yql/providers/yt/provider/yql_yt_helpers.cpp
index 923511b07e..e95df3e2dd 100644
--- a/ydb/library/yql/providers/yt/provider/yql_yt_helpers.cpp
+++ b/ydb/library/yql/providers/yt/provider/yql_yt_helpers.cpp
@@ -362,7 +362,7 @@ TExprNode::TPtr YtCleanupWorld(const TExprNode::TPtr& input, TExprContext& ctx,
auto cons = right.Cast().Input().Maybe<TCoCons>();
if (cons) {
remaps[node.Get()] = cons.Cast().Input().Ptr();
- return true;
+ return false;
}
}