summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorudovichenko-r <[email protected]>2023-11-30 12:32:52 +0300
committerudovichenko-r <[email protected]>2023-11-30 13:52:19 +0300
commit6e1e050f4eea195f92f7c5a6ffd9f8e82912f257 (patch)
tree777cd33207de6754419de1b1359f0c8cc7e618e0
parent48c9d1b2fbc2dfd902cdcbde1623bc2c942e0913 (diff)
[yql] Remove excess debug out
-rw-r--r--ydb/library/yql/providers/yt/provider/yql_yt_join_reorder.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/ydb/library/yql/providers/yt/provider/yql_yt_join_reorder.cpp b/ydb/library/yql/providers/yt/provider/yql_yt_join_reorder.cpp
index f5f380e2605..7a7e1cc21f9 100644
--- a/ydb/library/yql/providers/yt/provider/yql_yt_join_reorder.cpp
+++ b/ydb/library/yql/providers/yt/provider/yql_yt_join_reorder.cpp
@@ -136,8 +136,6 @@ public:
TYtJoinNodeOp::TPtr res = dynamic_cast<TYtJoinNodeOp*>(Convert(0, scope).Get());
YQL_ENSURE(res);
- DebugPrint(res, Ctx, 0);
-
if (Debug) {
DebugPrint(res, Ctx, 0);
}
@@ -277,7 +275,7 @@ private:
// relId, varId, table, column
std::vector<std::tuple<int,int,TStringBuf,TStringBuf>> leftVars;
std::vector<std::tuple<int,int,TStringBuf,TStringBuf>> rightVars;
-
+
ExtractVars(leftVars, op->LeftLabel);
ExtractVars(rightVars, op->RightLabel);
@@ -336,7 +334,7 @@ private:
TExprNode::TPtr MakeLabel(const std::vector<IOptimizer::TVarId>& vars) const {
TVector<TExprNodePtr> label; label.reserve(vars.size() * 2);
-
+
for (auto [relId, varId] : vars) {
auto [table, column] = Var2TableCol[relId - 1][varId - 1];