aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzverevgeny <zverevgeny@ydb.tech>2024-02-01 20:41:08 +0300
committerGitHub <noreply@github.com>2024-02-01 20:41:08 +0300
commit26778fe997f4d91e2ed5797bf51bf615d2bc01ec (patch)
tree6e4362711fe300e37d5ea5a49cda31372f4fc57a
parent161d4a47bfe438951f07d1ffc70c0db03af7c567 (diff)
downloadydb-26778fe997f4d91e2ed5797bf51bf615d2bc01ec.tar.gz
YQL-17703 always use sized allocator in CA (#1522)
-rw-r--r--ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h b/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h
index 27852630bf3..89fb706d88e 100644
--- a/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h
+++ b/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h
@@ -186,7 +186,7 @@ protected:
Alloc = std::make_shared<NKikimr::NMiniKQL::TScopedAlloc>(
__LOCATION__,
NKikimr::TAlignedPagePoolCounters(),
- FunctionRegistry->SupportsSizedAllocators(),
+ true,
false
);
InitMonCounters(taskCounters);