This is an automated email from the ASF dual-hosted git repository.
michaelsmith pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git
from ae848a6ce IMPALA-12373: Small String Optimization for StringValue
new 6d3317b9a IMPALA-12570: Add longer strings to tables containing
collections
new a9ad48484 IMPALA-12557: DELETE throws DateTimeParseException when
deleting from time-partitioned table
new 342846954 IMPALA-12571: Fix errors related to small strings found by
Clang sanitizer builds
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
be/src/exec/hdfs-table-sink.cc | 3 +-
be/src/exec/hdfs-table-sink.h | 2 +-
be/src/exec/iceberg-delete-sink.cc | 55 ++-
be/src/exec/iceberg-delete-sink.h | 9 +-
be/src/exec/table-sink-base.cc | 2 +-
be/src/exec/table-sink-base.h | 2 +-
be/src/runtime/descriptors.cc | 6 +-
be/src/runtime/descriptors.h | 6 +
be/src/runtime/string-value-test.cc | 18 +-
be/src/runtime/string-value.cc | 3 +-
be/src/runtime/tuple.cc | 2 +-
be/src/util/CMakeLists.txt | 3 +
be/src/util/iceberg-utility-functions-test.cc | 101 ++++++
be/src/util/iceberg-utility-functions.cc | 95 ++++++
be/src/util/iceberg-utility-functions.h | 69 ++++
.../datagenerator/RandomNestedDataGenerator.java | 21 +-
testdata/bin/generate-load-nested.sh | 10 +-
testdata/data/README | 2 +-
.../functional/functional_schema_template.sql | 124 +++++--
.../QueryTest/iceberg-delete-partitioned.test | 376 +++++++++++++++++++++
.../QueryTest/mixed-collections-and-structs.test | 46 +--
.../QueryTest/nested-array-in-select-list.test | 8 +-
.../QueryTest/nested-map-in-select-list.test | 28 +-
23 files changed, 886 insertions(+), 105 deletions(-)
create mode 100644 be/src/util/iceberg-utility-functions-test.cc
create mode 100644 be/src/util/iceberg-utility-functions.cc
create mode 100644 be/src/util/iceberg-utility-functions.h