Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
airborne12 committed Nov 14, 2023
1 parent 4bdadb6 commit 1d148e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/vec/functions/match.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Status FunctionMatchBase::execute_impl(FunctionContext* context, Block& block,
}
} else if (auto* nullable = check_and_get_column<ColumnNullable>(source_col.get())) {
// match null
if(type_ptr->is_nullable()) {
if (type_ptr->is_nullable()) {
if (column_ptr->only_null()) {
block.get_by_position(result).column = nullable->get_null_map_column_ptr();
return Status::OK();
Expand Down

0 comments on commit 1d148e7

Please sign in to comment.