From 7475105c76ab2b920f0cef42dec1200c82200b61 Mon Sep 17 00:00:00 2001 From: Daniel Hunte Date: Wed, 10 Jul 2024 11:19:49 -0700 Subject: [PATCH] Remove redundant memory management initialization (#10426) Summary: Pull Request resolved: https://github.com/facebookincubator/velox/pull/10426 MemoryManager initalization was moved up further in the code but the original placement wasn't removed Reviewed By: kevinwilfong Differential Revision: D59545365 --- velox/exec/tests/AggregationRunnerTest.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/velox/exec/tests/AggregationRunnerTest.cpp b/velox/exec/tests/AggregationRunnerTest.cpp index 56e864d37ca59..2718960907a8f 100644 --- a/velox/exec/tests/AggregationRunnerTest.cpp +++ b/velox/exec/tests/AggregationRunnerTest.cpp @@ -75,7 +75,6 @@ int main(int argc, char** argv) { facebook::velox::aggregate::prestosql::registerAllAggregateFunctions(); facebook::velox::functions::prestosql::registerAllScalarFunctions(); - // facebook::velox::memory::MemoryManager::initialize({}); auto duckQueryRunner = std::make_unique();