From 1d148e74612b6da509d8cfc1af363b2fbb1e1869 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A7=9C=E5=87=AF?= Date: Tue, 14 Nov 2023 20:29:28 +0800 Subject: [PATCH] fix format --- be/src/vec/functions/match.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/vec/functions/match.cpp b/be/src/vec/functions/match.cpp index c1e170ba57217c1..8264425451b6be3 100644 --- a/be/src/vec/functions/match.cpp +++ b/be/src/vec/functions/match.cpp @@ -67,7 +67,7 @@ Status FunctionMatchBase::execute_impl(FunctionContext* context, Block& block, } } else if (auto* nullable = check_and_get_column(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();