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 cf28a4c52 IMPALA-12121: Add non empty check for UDF location in
getLastModifiedTime method
new baddaf224 IMPALA-12144: Skip TestTpcdsQueryWithProcessingCost if
dockerised
new 607ae742e IMPALA-12134: Optimize row materialization time
new ff3d0c798 IMPALA-12019: Support ORDER BY for arrays of fixed length
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/benchmarks/date-benchmark.cc | 105 ++++++++++-
be/src/exec/hash-table.cc | 2 +-
be/src/runtime/collection-value.cc | 1 +
be/src/runtime/collection-value.h | 18 ++
be/src/runtime/date-parse-util.cc | 18 ++
be/src/runtime/date-parse-util.h | 3 +
be/src/runtime/date-value.cc | 16 +-
.../runtime/datetime-simple-date-format-parser.h | 13 ++
be/src/runtime/descriptors.cc | 30 ++-
be/src/runtime/descriptors.h | 18 +-
be/src/runtime/raw-value.cc | 176 ++++++++++++------
be/src/runtime/raw-value.h | 68 ++++---
be/src/runtime/sorter-internal.h | 40 ++--
be/src/runtime/sorter.cc | 179 ++++++++++++++----
be/src/runtime/timestamp-parse-util.cc | 27 +++
be/src/runtime/timestamp-parse-util.h | 4 +
be/src/runtime/timestamp-value.cc | 21 ++-
be/src/runtime/tuple.cc | 134 ++++++++------
be/src/runtime/tuple.h | 73 +++++---
be/src/runtime/types.h | 4 -
be/src/service/query-result-set.cc | 24 ++-
.../java/org/apache/impala/analysis/Analyzer.java | 2 +-
.../java/org/apache/impala/analysis/QueryStmt.java | 19 +-
.../java/org/apache/impala/analysis/SortInfo.java | 77 +++++++-
.../apache/impala/analysis/TupleDescriptor.java | 8 +-
.../main/java/org/apache/impala/catalog/Type.java | 2 +
.../org/apache/impala/planner/AnalyticPlanner.java | 28 +--
testdata/ComplexTypesTbl/simple_arrays_big.parq | Bin 0 -> 10252963 bytes
testdata/data/README | 39 ++++
.../functional/functional_schema_template.sql | 38 ++++
.../datasets/functional/schema_constraints.csv | 6 +
.../QueryTest/mixed-collections-and-structs.test | 14 --
.../QueryTest/nested-array-in-select-list.test | 6 -
.../QueryTest/nested-map-in-select-list.test | 6 -
.../QueryTest/partitioned-top-n-complex.test | 50 +++++
.../queries/QueryTest/sort-complex.test | 205 +++++++++++++++++++++
.../queries/QueryTest/top-n-complex.test | 66 +++++++
tests/common/skip.py | 2 +
tests/query_test/test_nested_types.py | 12 +-
tests/query_test/test_queries.py | 15 +-
tests/query_test/test_sort.py | 46 ++++-
tests/query_test/test_tpcds_queries.py | 2 +
42 files changed, 1314 insertions(+), 303 deletions(-)
create mode 100644 testdata/ComplexTypesTbl/simple_arrays_big.parq
create mode 100644
testdata/workloads/functional-query/queries/QueryTest/partitioned-top-n-complex.test
create mode 100644
testdata/workloads/functional-query/queries/QueryTest/sort-complex.test
create mode 100644
testdata/workloads/functional-query/queries/QueryTest/top-n-complex.test