From 173aeb9b9a031defe0d504f3fca19cf20ebf018d Mon Sep 17 00:00:00 2001 From: yoruet <1559650411@qq.com> Date: Sun, 17 Nov 2024 20:37:42 +0800 Subject: [PATCH] code format --- be/test/vec/core/block_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/be/test/vec/core/block_test.cpp b/be/test/vec/core/block_test.cpp index 4efbb00f5a85bc..d4e303037673c6 100644 --- a/be/test/vec/core/block_test.cpp +++ b/be/test/vec/core/block_test.cpp @@ -2115,7 +2115,7 @@ TEST(BlockTest, BlockOperations) { auto col2 = vectorized::ColumnVector::create(); col2->insert_value(2); block.insert({std::move(col2), type, - std::string(BeConsts::BLOCK_TEMP_COLUMN_PREFIX) + "col"}); + std::string(BeConsts::BLOCK_TEMP_COLUMN_PREFIX) + "col"}); } // Add another temporary column @@ -2123,7 +2123,7 @@ TEST(BlockTest, BlockOperations) { auto col3 = vectorized::ColumnVector::create(); col3->insert_value(3); block.insert({std::move(col3), type, - std::string(BeConsts::BLOCK_TEMP_COLUMN_PREFIX) + "another_col"}); + std::string(BeConsts::BLOCK_TEMP_COLUMN_PREFIX) + "another_col"}); } EXPECT_EQ(3, block.columns());