diff options
| author | ivanmorozov <[email protected]> | 2023-11-23 19:21:36 +0300 |
|---|---|---|
| committer | ivanmorozov <[email protected]> | 2023-11-23 20:22:00 +0300 |
| commit | ca304266d01ff098a5bf8fac2f3d14fa7a169f38 (patch) | |
| tree | 03bdd1575d64ac5370d00c5f81315f57ee9d7477 | |
| parent | 55740787b7e6e571eeefbc5e3905f9a44dbfaaaa (diff) | |
KIKIMR-20247: fix
| -rw-r--r-- | ydb/core/kqp/opt/physical/kqp_opt_phy_olap_agg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/kqp/opt/physical/kqp_opt_phy_olap_agg.cpp b/ydb/core/kqp/opt/physical/kqp_opt_phy_olap_agg.cpp index f5c37d6d754..7c391f27969 100644 --- a/ydb/core/kqp/opt/physical/kqp_opt_phy_olap_agg.cpp +++ b/ydb/core/kqp/opt/physical/kqp_opt_phy_olap_agg.cpp @@ -250,7 +250,7 @@ TExprBase KqpPushDownOlapGroupByKeys(TExprBase node, TExprContext& ctx, const TK return node; } - if (!kqpCtx.Config->HasOptEnableOlapPushdown() || kqpCtx.Config->HasOptEnableOlapProvideComputeSharding()) { + if (!kqpCtx.Config->HasOptEnableOlapPushdown() || !kqpCtx.Config->HasOptEnableOlapProvideComputeSharding()) { return node; } |
