You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by ca...@apache.org on 2023/01/17 10:52:55 UTC

[doris] branch struct-type updated: [hotfix](struct-type) Fix type descriptor make array load core (#16020)

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

cambyzju pushed a commit to branch struct-type
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/struct-type by this push:
     new 92fcf9d931 [hotfix](struct-type) Fix type descriptor make array load core (#16020)
92fcf9d931 is described below

commit 92fcf9d931a40d4772cc1d03b2694d4ca4652689
Author: xy720 <22...@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 +-
 thirdparty/build-thirdparty.sh   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/be/src/vec/sink/vtablet_sink.cpp b/be/src/vec/sink/vtablet_sink.cpp
index 2f4cc66cc9..9dd772eee0 100644
--- a/be/src/vec/sink/vtablet_sink.cpp
+++ b/be/src/vec/sink/vtablet_sink.cpp
@@ -1403,7 +1403,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;
diff --git a/thirdparty/build-thirdparty.sh b/thirdparty/build-thirdparty.sh
index 3798c54979..f7eb42fd22 100755
--- a/thirdparty/build-thirdparty.sh
+++ b/thirdparty/build-thirdparty.sh
@@ -1579,7 +1579,6 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
     build_gettext
 fi
 
-build_clucene
 build_libunixodbc
 build_openssl
 build_libevent
@@ -1636,5 +1635,6 @@ build_libbacktrace
 build_sse2neon
 build_xxhash
 build_concurrentqueue
+build_clucene
 
 echo "Finished to build all thirdparties"


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