diff options
author | udovichenko-r <rvu@ydb.tech> | 2023-08-22 20:16:17 +0300 |
---|---|---|
committer | udovichenko-r <rvu@ydb.tech> | 2023-08-22 20:53:14 +0300 |
commit | 17e64b505994706d741b4a7cd32b34d9c85c67c8 (patch) | |
tree | 6a011e5af825ff1acbebc2c4df1d335878058d59 | |
parent | 957487cc21f80f6d23e717d334e4fc132c76d74c (diff) | |
download | ydb-17e64b505994706d741b4a7cd32b34d9c85c67c8.tar.gz |
[yql] Fix validate execution for result provider
YQL-16351
-rw-r--r-- | ydb/library/yql/providers/common/provider/yql_data_provider_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/library/yql/providers/common/provider/yql_data_provider_impl.cpp b/ydb/library/yql/providers/common/provider/yql_data_provider_impl.cpp index b4e421ffbd..c04c6e4d87 100644 --- a/ydb/library/yql/providers/common/provider/yql_data_provider_impl.cpp +++ b/ydb/library/yql/providers/common/provider/yql_data_provider_impl.cpp @@ -268,7 +268,7 @@ bool TDataProviderBase::ValidateExecution(const TExprNode& node, TExprContext& c } void TDataProviderBase::GetRequiredChildren(const TExprNode& node, TExprNode::TListType& children) { - TPlanFormatterBase::GetDependencies(node, children, false); + GetDependencies(node, children, false); } IGraphTransformer& TDataProviderBase::GetCallableExecutionTransformer() { |