diff options
author | Nikita Vasilev <ns-vasilev@ydb.tech> | 2024-07-04 14:55:31 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-04 11:55:31 +0000 |
commit | 4d68f9b8c608eb16b493f51e9d9594275f38f9ad (patch) | |
tree | 02326a7262fa6c1abbb440d70ba92a2599f96803 | |
parent | ca6899748e7abf3afc4e5261fc924872f25052e2 (diff) | |
download | ydb-4d68f9b8c608eb16b493f51e9d9594275f38f9ad.tar.gz |
fix oltp sink update (#6285)
-rw-r--r-- | ydb/core/kqp/ut/service/kqp_qs_queries_ut.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ydb/core/kqp/ut/service/kqp_qs_queries_ut.cpp b/ydb/core/kqp/ut/service/kqp_qs_queries_ut.cpp index 80a4884ee98..1469403863a 100644 --- a/ydb/core/kqp/ut/service/kqp_qs_queries_ut.cpp +++ b/ydb/core/kqp/ut/service/kqp_qs_queries_ut.cpp @@ -2988,6 +2988,8 @@ Y_UNIT_TEST_SUITE(KqpQueryService) { void Execute() { AppConfig.MutableTableServiceConfig()->SetEnableOlapSink(true); AppConfig.MutableTableServiceConfig()->SetEnableOltpSink(true); + AppConfig.MutableTableServiceConfig()->SetEnableKqpDataQueryStreamLookup(true); + AppConfig.MutableTableServiceConfig()->SetOldLookupJoinBehaviour(false); auto settings = TKikimrSettings().SetAppConfig(AppConfig).SetWithSampleTables(false); Kikimr = std::make_unique<TKikimrRunner>(settings); |