Skip to content

Commit

Permalink
TODO AnnotateTDqLookupSourceWrap
Browse files Browse the repository at this point in the history
  • Loading branch information
yumkam committed Jan 14, 2025
1 parent 762ac81 commit 42c7d42
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions ydb/library/yql/dq/type_ann/dq_type_ann.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include <yql/essentials/core/type_ann/type_ann_core.h>
#include <yql/essentials/core/yql_type_helpers.h>
#include <yql/essentials/utils/log/log.h>
#include <ydb/library/yql/providers/dq/expr_nodes/dqs_expr_nodes.h>

#include <yql/essentials/providers/common/provider/yql_provider.h>

Expand Down Expand Up @@ -615,6 +616,18 @@ TStatus AnnotateDqConnection(const TExprNode::TPtr& input, TExprContext& ctx) {
return TStatus::Ok;
}

TStatus AnnotateTDqSourceWrapBase(const TExprNode::TPtr& input, TExprContext& /*ctx*/) {
[[maybe_unused]]
auto dqLookupSourceWrap = TDqSourceWrapBase(input);
return TStatus::Ok;
}

TStatus AnnotateTDqLookupSourceWrap(const TExprNode::TPtr& input, TExprContext& ctx) {
[[maybe_unused]]
auto dqLookupSourceWrap = TDqLookupSourceWrap(input).Input();
return AnnotateTDqSourceWrapBase(input, ctx);
}

TStatus AnnotateDqCnStreamLookup(const TExprNode::TPtr& input, TExprContext& ctx) {
auto cnStreamLookup = TDqCnStreamLookup(input);
auto leftInputType = GetDqConnectionType(TDqConnection(input), ctx);
Expand Down

0 comments on commit 42c7d42

Please sign in to comment.