Skip to content

Commit

Permalink
Update dbms/src/TestUtils/InputStreamTestUtils.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: yanweiqi <592838129@qq.com>
  • Loading branch information
JinheLin and ywqzzy authored Sep 1, 2022
1 parent 0011a27 commit db82f7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbms/src/TestUtils/InputStreamTestUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ ::testing::AssertionResult UnorderedInputStreamVSBlockUnrestrictlyCompareColumns
expect_col.column = std::move(column_data);

const auto & actual_col = read_block.getByName(col_name);
if (auto res = DB::tests::columnEqual(expect_col, actual_col); !res)
if (auto res = columnEqual(expect_col, actual_col); !res)
{
auto expect_expr = fmt::format("expect block: {}", getColumnsContent(expect_block.getColumnsWithTypeAndName(), start_offset, start_offset + read_block.rows()));
Block actual_block_to_cmp;
Expand Down

0 comments on commit db82f7e

Please sign in to comment.