diff options
author | gvit <gvit@ydb.tech> | 2023-04-27 23:41:00 +0300 |
---|---|---|
committer | gvit <gvit@ydb.tech> | 2023-04-27 23:41:00 +0300 |
commit | bc532c9f50aab19e4b98068661ad1b9295a7cb8f (patch) | |
tree | e4e2455d12ffc23c0678837a5257a3648e38e1e4 | |
parent | 70266f0794f9afebbe908f8144fe18f7d8b1c6f4 (diff) | |
download | ydb-bc532c9f50aab19e4b98068661ad1b9295a7cb8f.tar.gz |
fix spilling problem
-rw-r--r-- | ydb/core/kqp/executer_actor/kqp_planner.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ydb/core/kqp/executer_actor/kqp_planner.cpp b/ydb/core/kqp/executer_actor/kqp_planner.cpp index 8c74f71486b..e23a834f03e 100644 --- a/ydb/core/kqp/executer_actor/kqp_planner.cpp +++ b/ydb/core/kqp/executer_actor/kqp_planner.cpp @@ -167,6 +167,7 @@ std::unique_ptr<TEvKqpNode::TEvStartKqpTasksRequest> TKqpPlanner::SerializeReque request.MutableRuntimeSettings()->SetExecType(NYql::NDqProto::TComputeRuntimeSettings::SCAN); request.MutableRuntimeSettings()->SetStatsMode(GetDqStatsMode(StatsMode)); request.MutableRuntimeSettings()->SetUseLLVM(enableLlvm); + request.MutableRuntimeSettings()->SetUseSpilling(WithSpilling); request.SetStartAllOrFail(true); } |