From d94e757c196189e513b353b2e0a6c98b838bee02 Mon Sep 17 00:00:00 2001 From: BInwei Yang Date: Wed, 20 Mar 2024 14:21:22 -0700 Subject: [PATCH] Update VeloxRuntime.cc --- cpp/velox/compute/VeloxRuntime.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/velox/compute/VeloxRuntime.cc b/cpp/velox/compute/VeloxRuntime.cc index b4ae5b519a4b..a77ddfbba480 100644 --- a/cpp/velox/compute/VeloxRuntime.cc +++ b/cpp/velox/compute/VeloxRuntime.cc @@ -220,11 +220,11 @@ std::unique_ptr VeloxRuntime::createColumnarBatchSerial void VeloxRuntime::dumpConf(const std::string& path) { auto backendConf = VeloxBackend::get()->getBackendConf(); auto allConf = backendConf; - + for (const auto& pair : confMap_) { allConf.insert_or_assign(pair.first, pair.second); } - + // Open file "velox.conf" for writing, automatically creating it if it doesn't exist, // or overwriting it if it does. std::ofstream outFile(path);