aboutsummaryrefslogtreecommitdiffstats
path: root/yql/tools
diff options
context:
space:
mode:
authorziganshinmr <ziganshinmr@yandex-team.com>2024-12-13 18:32:53 +0300
committerziganshinmr <ziganshinmr@yandex-team.com>2024-12-13 19:32:39 +0300
commit90f6b5cc50436aca207edd0d3cb61a9670fd88b1 (patch)
tree2a174d2582e405c4c6981fdea811a43e388bd4b7 /yql/tools
parent338a2a1a277ede0e1fb5a15c3ebf4b9d928630e8 (diff)
downloadydb-90f6b5cc50436aca207edd0d3cb61a9670fd88b1.tar.gz
Block output for YT operations
commit_hash:469d6669ff3d3216234cac1ac27e03e22600aff8
Diffstat (limited to 'yql/tools')
-rw-r--r--yql/tools/yqlrun/http/yql_server.cpp1
-rw-r--r--yql/tools/yqlrun/lib/yqlrun_lib.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/yql/tools/yqlrun/http/yql_server.cpp b/yql/tools/yqlrun/http/yql_server.cpp
index 4cefa52396..97fe9e671c 100644
--- a/yql/tools/yqlrun/http/yql_server.cpp
+++ b/yql/tools/yqlrun/http/yql_server.cpp
@@ -106,6 +106,7 @@ public:
pipeline->Add(CreateYtWideFlowTransformer(nullptr), "WideFlow");
pipeline->Add(CreateYtBlockInputTransformer(nullptr), "BlockInput");
pipeline->Add(MakePeepholeOptimization(pipeline->GetTypeAnnotationContext()), "PeepHole");
+ pipeline->Add(CreateYtBlockOutputTransformer(nullptr), "BlockOutput");
}
};
diff --git a/yql/tools/yqlrun/lib/yqlrun_lib.cpp b/yql/tools/yqlrun/lib/yqlrun_lib.cpp
index f8b681a456..d9db2a9048 100644
--- a/yql/tools/yqlrun/lib/yqlrun_lib.cpp
+++ b/yql/tools/yqlrun/lib/yqlrun_lib.cpp
@@ -33,6 +33,7 @@ public:
pipeline->Add(NYql::CreateYtWideFlowTransformer(nullptr), "WideFlow");
pipeline->Add(NYql::CreateYtBlockInputTransformer(nullptr), "BlockInput");
pipeline->Add(NYql::MakePeepholeOptimization(pipeline->GetTypeAnnotationContext()), "PeepHole");
+ pipeline->Add(NYql::CreateYtBlockOutputTransformer(nullptr), "BlockOutput");
}
};