aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorilezhankin <ilezhankin@yandex-team.com>2025-02-27 14:06:51 +0300
committerilezhankin <ilezhankin@yandex-team.com>2025-02-27 14:24:12 +0300
commit2588470476adc99d13bddfd544ed5c9123e7242b (patch)
tree9e43970031c6c275681d946d67f4be236c8977a2
parente6af4dfb936cc2e6d0fc6460b9844715387eb62f (diff)
downloadydb-2588470476adc99d13bddfd544ed5c9123e7242b.tar.gz
Fix macro name ALLOW_MEMORY_ALLOCATOR → ALLOW_DEFAULT_ALLOCATOR
commit_hash:ac39df564cce7e2edee90a938876d3c5717f1df8
-rw-r--r--yql/essentials/minikql/mkql_alloc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yql/essentials/minikql/mkql_alloc.cpp b/yql/essentials/minikql/mkql_alloc.cpp
index 539a3349ed..963f46a67e 100644
--- a/yql/essentials/minikql/mkql_alloc.cpp
+++ b/yql/essentials/minikql/mkql_alloc.cpp
@@ -309,7 +309,7 @@ void MKQLArrowFree(const void* mem, ui64 size) {
Y_ENSURE(size == header->Size);
-#if defined(ALLOW_MEMORY_ALLOCATOR)
+#if defined(ALLOW_DEFAULT_ALLOCATOR)
if (Y_UNLIKELY(TAllocState::IsDefaultAllocatorUsed())) {
free(header);
return;