[Fix](orc-reader) Add missing break introduced by #26548. (#26633)

Add missing break introduced by #26548. Sorry for this mistake.
This commit is contained in:
Qi Chen
2023-11-09 18:29:44 +08:00
committed by GitHub
parent fac1b2b192
commit c07a70e22a

View File

@ -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;
}
}