From bb9434308043a54276995b1e230df0cb081919ce Mon Sep 17 00:00:00 2001 From: drrtuy Date: Thu, 20 Feb 2025 15:23:10 +0000 Subject: [PATCH] fix(): allocate Pointer vector in both TupleJoiner ctor --- utils/joiner/tuplejoiner.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/utils/joiner/tuplejoiner.cpp b/utils/joiner/tuplejoiner.cpp index d4e52d64a..772715ab1 100644 --- a/utils/joiner/tuplejoiner.cpp +++ b/utils/joiner/tuplejoiner.cpp @@ -162,6 +162,9 @@ TupleJoiner::TupleJoiner(const rowgroup::RowGroup& smallInput, const rowgroup::R { uint i; + auto alloc = resourceManager_->getAllocator(); + rows.reset(new RowPointersVec(alloc)); + getBucketCount(); for (i = 0; i < bucketCount; i++)