diff options
| author | Pisarenko Grigoriy <[email protected]> | 2026-07-20 17:13:23 +0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-07-20 15:13:23 +0300 |
| commit | deabc22f58edd74cc33ae067c9cbfe7ee4ed0759 (patch) | |
| tree | be1f148d5277ee7380144d9beab0c252ebc68770 | |
| parent | d3b0ad28dc21de4fdbfc78670e78fdd4a3ceb0dc (diff) | |
YQ-5512 joined streaming queries and kqp constraints FF (#47150)
| -rw-r--r-- | ydb/core/kqp/compile_service/kqp_compile_actor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/kqp/compile_service/kqp_compile_actor.cpp b/ydb/core/kqp/compile_service/kqp_compile_actor.cpp index e924c662e67..6d42d3ed4ec 100644 --- a/ydb/core/kqp/compile_service/kqp_compile_actor.cpp +++ b/ydb/core/kqp/compile_service/kqp_compile_actor.cpp @@ -137,7 +137,7 @@ public: } if (IsIn({NKikimrKqp::QUERY_TYPE_SQL_GENERIC_SCRIPT, NKikimrKqp::QUERY_TYPE_SQL_GENERIC_QUERY, NKikimrKqp::QUERY_TYPE_SQL_GENERIC_CONCURRENT_QUERY}, QueryId.Settings.QueryType)) { - config->_KqpYqlConstraintsTransformerEnabled = AppData()->FeatureFlags.GetEnableKqpConstraintsTransformer(); + config->_KqpYqlConstraintsTransformerEnabled = AppData()->FeatureFlags.GetEnableKqpConstraintsTransformer() && AppData()->FeatureFlags.GetEnableStreamingQueries(); } if (UserRequestContext && UserRequestContext->IsStreamingQuery) { |
