diff options
author | vvvv <vvvv@ydb.tech> | 2023-02-11 10:11:40 +0300 |
---|---|---|
committer | vvvv <vvvv@ydb.tech> | 2023-02-11 10:11:40 +0300 |
commit | 8a728348276aae333a29994af7e4d19c3db9a3b0 (patch) | |
tree | a1b3e6357d4e78fe92bfaffbbcb2b0a1f4649c0d | |
parent | 3c6b83916202a9cafc749f9e0580ac0c507378be (diff) | |
download | ydb-8a728348276aae333a29994af7e4d19c3db9a3b0.tar.gz |
missing LLVM settings in precomputes
-rw-r--r-- | ydb/library/yql/providers/dq/provider/exec/yql_dq_exectransformer.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ydb/library/yql/providers/dq/provider/exec/yql_dq_exectransformer.cpp b/ydb/library/yql/providers/dq/provider/exec/yql_dq_exectransformer.cpp index 5fa3ef59073..2db5b1cc12a 100644 --- a/ydb/library/yql/providers/dq/provider/exec/yql_dq_exectransformer.cpp +++ b/ydb/library/yql/providers/dq/provider/exec/yql_dq_exectransformer.cpp @@ -1629,6 +1629,10 @@ private: graphParams["Precompute"] = ToString(true); MarkProgressStarted(publicIds->AllPublicIds, State->ProgressWriter); + if (const auto optLLVM = State->TypeCtx->OptLLVM) { + settings->OptLLVM = *optLLVM; + } + IDqGateway::TDqProgressWriter progressWriter = MakeDqProgressWriter(publicIds); auto future = State->ExecutePlan(State->SessionId, executionPlanner->GetPlan(), {}, secureParams, graphParams, |