diff --git a/ydb/core/kqp/runtime/kqp_stream_lookup_actor.cpp b/ydb/core/kqp/runtime/kqp_stream_lookup_actor.cpp index bca3e44aeb34..7f5f274ca1c1 100644 --- a/ydb/core/kqp/runtime/kqp_stream_lookup_actor.cpp +++ b/ydb/core/kqp/runtime/kqp_stream_lookup_actor.cpp @@ -610,6 +610,13 @@ class TKqpStreamLookupActor : public NActors::TActorBootstrappedAddInputRow(std::move(row)); } diff --git a/ydb/core/kqp/ut/join/kqp_index_lookup_join_ut.cpp b/ydb/core/kqp/ut/join/kqp_index_lookup_join_ut.cpp index ab17f246bcaa..99481efbbf33 100644 --- a/ydb/core/kqp/ut/join/kqp_index_lookup_join_ut.cpp +++ b/ydb/core/kqp/ut/join/kqp_index_lookup_join_ut.cpp @@ -240,12 +240,10 @@ class TTester { bool OnlineReadOnly = false; NYdb::TParamsBuilder ParamsBuilder; bool NeedParams = false; - bool FilterOptionalSide = true; TTester& Run() { auto settings = TKikimrSettings(); settings.AppConfig.MutableTableServiceConfig()->SetEnableKqpDataQueryStreamIdxLookupJoin(StreamLookup); - settings.AppConfig.MutableTableServiceConfig()->SetFilterPushdownOverJoinOptionalSide(FilterOptionalSide); TKikimrRunner kikimr(settings); auto db = kikimr.GetTableClient(); @@ -1182,7 +1180,6 @@ Y_UNIT_TEST_TWIN(TestEntityFramework, StreamLookupJoin) { ])", .StreamLookup=StreamLookupJoin, .DoValidateStats=false, - .FilterOptionalSide=false // remove this to get failure }; tester.Run(); }