Skip to content

Commit

Permalink
add const column be ut
Browse files Browse the repository at this point in the history
  • Loading branch information
xiedeyantu committed Apr 8, 2024
1 parent 6ba3425 commit d9a5a44
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions be/test/vec/function/function_string_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1225,8 +1225,8 @@ TEST(function_string_test, function_strcmp_test) {

for (const auto& line : data_set) {
DataSet const_dataset = {line};
static_cast<void>(check_function<DataTypeInt16, true>(func_name, input_types,
const_dataset));
static_cast<void>(
check_function<DataTypeInt16, true>(func_name, input_types, const_dataset));
}
}
{
Expand All @@ -1247,8 +1247,8 @@ TEST(function_string_test, function_strcmp_test) {

for (const auto& line : data_set) {
DataSet const_dataset = {line};
static_cast<void>(check_function<DataTypeInt16, true>(func_name, input_types,
const_dataset));
static_cast<void>(
check_function<DataTypeInt16, true>(func_name, input_types, const_dataset));
}
}
}
Expand Down

0 comments on commit d9a5a44

Please sign in to comment.