diff options
| author | Vitaliy Filippov <[email protected]> | 2025-10-20 18:09:56 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-10-20 18:09:56 +0300 |
| commit | 51a3ffe43f5921da3e47fe4dead4db362c0b4141 (patch) | |
| tree | 48943d2d2a82d1f8e61787d0068f26d244bc042b | |
| parent | 88e9579dd6006a9137e01df4b5bc0500ab0dda27 (diff) | |
Ignore TEvNewAsyncInputDataArrived in TKqpVectorResolveActor when reading is already finished (fix #27095) (#27155)
| -rw-r--r-- | ydb/core/kqp/runtime/kqp_vector_actor.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ydb/core/kqp/runtime/kqp_vector_actor.cpp b/ydb/core/kqp/runtime/kqp_vector_actor.cpp index 6133778ecaa..bac8f23fcfd 100644 --- a/ydb/core/kqp/runtime/kqp_vector_actor.cpp +++ b/ydb/core/kqp/runtime/kqp_vector_actor.cpp @@ -325,6 +325,9 @@ private: } void HandleRead(TEvNewAsyncInputDataArrived::TPtr) { + if (!ReadActorInput) { + return; + } TMaybe<TInstant> watermark; ui64 freeSpace = 32*1024*1024; // FIXME The value doesn't really matter, but where to take it from? NKikimr::NMiniKQL::TUnboxedValueBatch rows; |
