This is an automated email from the ASF dual-hosted git repository. xuyang pushed a commit to branch struct-map-type-rebase in repository https://gitbox.apache.org/repos/asf/doris.git
commit 7a573c940443950c929b91ab3b71b74602315574 Author: xy720 <22125576+xy...@users.noreply.github.com> AuthorDate: Tue Jan 17 18:52:49 2023 +0800 [hotfix](struct-type) Fix type descriptor make array load core (#16020) --- be/src/vec/sink/vtablet_sink.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/vec/sink/vtablet_sink.cpp b/be/src/vec/sink/vtablet_sink.cpp index 27f06fbdbe..0ad8458f13 100644 --- a/be/src/vec/sink/vtablet_sink.cpp +++ b/be/src/vec/sink/vtablet_sink.cpp @@ -1398,7 +1398,7 @@ Status VOlapTableSink::_validate_column(RuntimeState* state, const TypeDescripto } fmt::format_to(error_prefix, "ARRAY type failed: "); RETURN_IF_ERROR(_validate_column( - state, nested_type, nested_type.contains_nulls[0], column_array->get_data_ptr(), + state, nested_type, type.contains_nulls[0], column_array->get_data_ptr(), slot_index, filter_bitmap, stop_processing, error_prefix, &permutation)); } break; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org