summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Vovk <[email protected]>2025-10-13 14:30:34 +0300
committerGitHub <[email protected]>2025-10-13 14:30:34 +0300
commitff2b01d5deec83abe8f1de5fd611839479c39ceb (patch)
tree8c056acc96af090c9381c3ad6c4565e9d2b7f3d1
parent43d3d02e95d4317bfc45f2aa1d4c9d63c500a6a9 (diff)
Kqp scan actor segfault fix (#26505)
-rw-r--r--ydb/core/kqp/compute_actor/kqp_scan_compute_actor.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/ydb/core/kqp/compute_actor/kqp_scan_compute_actor.h b/ydb/core/kqp/compute_actor/kqp_scan_compute_actor.h
index 70596c68d84..ee6db9e1fec 100644
--- a/ydb/core/kqp/compute_actor/kqp_scan_compute_actor.h
+++ b/ydb/core/kqp/compute_actor/kqp_scan_compute_actor.h
@@ -65,6 +65,10 @@ private:
const EBlockTrackingMode BlockTrackingMode;
public:
+ ~TKqpScanComputeActor() override {
+ DoTerminateImpl();
+ }
+
static constexpr NKikimrServices::TActivity::EType ActorActivityType() {
return NKikimrServices::TActivity::KQP_SCAN_COMPUTE_ACTOR;
}