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

dbecker pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git


    from 67bb870aa IMPALA-11911: Fix NULL argument handling in Hive GenericUDFs
     new 374d011a7 IMPALA-11479: Add Java unit tests for IcebergUtil.
     new d98ab986a IMPALA-11223: Use unique id to create codegen instances
     new 2d4730698 IMPALA-9551: Allow mixed complex types in select list

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/codegen/codegen-symbol-emitter.cc           |   5 +-
 be/src/codegen/llvm-codegen.cc                     |   2 +
 be/src/exec/unnest-node.cc                         |   9 +-
 be/src/exprs/slot-ref.h                            |   1 +
 be/src/runtime/complex-value-writer.h              |   6 +-
 be/src/runtime/complex-value-writer.inline.h       |  74 ++-
 be/src/runtime/descriptors.cc                      |  12 +-
 be/src/runtime/fragment-state.cc                   |   6 +-
 be/src/runtime/raw-value.cc                        |  10 +-
 be/src/service/hs2-util.cc                         |  23 +-
 be/src/service/query-result-set.cc                 |   7 +-
 .../java/org/apache/impala/analysis/Analyzer.java  | 201 +++++---
 .../apache/impala/analysis/CollectionTableRef.java |   8 +
 .../org/apache/impala/analysis/InlineViewRef.java  | 229 +++++----
 .../org/apache/impala/analysis/SlotDescriptor.java |  26 +-
 .../java/org/apache/impala/analysis/SlotRef.java   |   4 -
 .../apache/impala/analysis/TupleDescriptor.java    |   2 +-
 .../org/apache/impala/analysis/UnnestExpr.java     |  41 +-
 .../apache/impala/common/TransactionKeepalive.java |   1 -
 .../apache/impala/planner/SingleNodePlanner.java   |   7 +-
 .../java/org/apache/impala/util/IcebergUtil.java   | 113 +++--
 .../apache/impala/analysis/AnalyzeStmtsTest.java   |  24 +-
 .../impala/catalog/local/LocalCatalogTest.java     |   2 +-
 .../org/apache/impala/util/IcebergUtilTest.java    | 400 +++++++++++++++
 .../functional/functional_schema_template.sql      | 131 ++++-
 .../datasets/functional/schema_constraints.csv     |   6 +
 .../queries/QueryTest/map_null_keys.test           |  14 +-
 .../QueryTest/mixed-collections-and-structs.test   | 551 +++++++++++++++++++++
 .../ranger_column_masking_complex_types.test       |   2 +-
 .../queries/QueryTest/struct-in-select-list.test   |  22 -
 tests/query_test/test_nested_types.py              |  32 ++
 31 files changed, 1657 insertions(+), 314 deletions(-)
 create mode 100644 fe/src/test/java/org/apache/impala/util/IcebergUtilTest.java
 create mode 100644 
testdata/workloads/functional-query/queries/QueryTest/mixed-collections-and-structs.test

Reply via email to