This is an automated email from the ASF dual-hosted git repository.

morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new c07a70e22a3 [Fix](orc-reader) Add missing `break` introduced by 
#26548. (#26633)
c07a70e22a3 is described below

commit c07a70e22a3004b48a508fa321044df20aee2835
Author: Qi Chen <kaka11.c...@gmail.com>
AuthorDate: Thu Nov 9 18:29:44 2023 +0800

    [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 214cbe0b57f..f17dadfad71 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;
         }
     }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to