Skip to content

Commit

Permalink
code format
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoruet committed Nov 17, 2024
1 parent 99c1eae commit 173aeb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions be/test/vec/core/block_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2115,15 +2115,15 @@ TEST(BlockTest, BlockOperations) {
auto col2 = vectorized::ColumnVector<Int32>::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
{
auto col3 = vectorized::ColumnVector<Int32>::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());
Expand Down

0 comments on commit 173aeb9

Please sign in to comment.