From 67199658a817c706c9fd84e578ed1efa1c94e914 Mon Sep 17 00:00:00 2001 From: Daniel Hunte Date: Wed, 10 Jul 2024 10:28:57 -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 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();