From c07a70e22a3004b48a508fa321044df20aee2835 Mon Sep 17 00:00:00 2001 From: Qi Chen Date: Thu, 9 Nov 2023 18:29:44 +0800 Subject: [PATCH] [Fix](orc-reader) Add missing `break` introduced by #26548. (#26633) Add missing break introduced by #26548. Sorry for this mistake. --- be/src/vec/exec/format/orc/vorc_reader.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/be/src/vec/exec/format/orc/vorc_reader.cpp b/be/src/vec/exec/format/orc/vorc_reader.cpp index 214cbe0b57..f17dadfad7 100644 --- a/be/src/vec/exec/format/orc/vorc_reader.cpp +++ b/be/src/vec/exec/format/orc/vorc_reader.cpp @@ -738,6 +738,7 @@ Status OrcReader::set_fill_columns( PrimitiveType column_type = each->col_type(); if (column_type == TYPE_ARRAY || column_type == TYPE_MAP || column_type == TYPE_STRUCT) { _has_complex_type = true; + break; } }