From 6bc2fc8775f31fa6a03b1d47e2ed34cd453991f3 Mon Sep 17 00:00:00 2001 From: Nikolay Shumkov Date: Wed, 31 Jul 2024 15:49:31 +0300 Subject: [PATCH] Fixes --- ydb/core/kqp/opt/physical/kqp_opt_phy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ydb/core/kqp/opt/physical/kqp_opt_phy.cpp b/ydb/core/kqp/opt/physical/kqp_opt_phy.cpp index c125e4394829..a4cfee447263 100644 --- a/ydb/core/kqp/opt/physical/kqp_opt_phy.cpp +++ b/ydb/core/kqp/opt/physical/kqp_opt_phy.cpp @@ -419,7 +419,7 @@ class TKqpPhysicalOptTransformer : public TOptimizeTransformerBase { { // TODO: Allow push to left stage for data queries. // It is now possible as we don't use datashard transactions for reads in data queries. - bool pushLeftStage = (KqpCtx.IsScanQuery() || KqpCtx.Config->EnableKqpScanQueryStreamIdxLookupJoin) && AllowFuseJoinInputs(node); + bool pushLeftStage = (KqpCtx.IsScanQuery() || KqpCtx.Config->EnableKqpDataQueryStreamLookup) && AllowFuseJoinInputs(node); TExprBase output = DqBuildJoin(node, ctx, optCtx, *getParents(), IsGlobal, pushLeftStage, KqpCtx.Config->GetHashJoinMode(), false );