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 7a99449a5 IMPALA-3268: Add support for SHOW VIEWS statement
     new 6b47c40e0 IMPALA-12159: Support ORDER BY for collections of variable 
length types in select list
     new d75807a19 IMPALA-12385: Enable Periodic metrics by default

The 2 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-anyval-read-write-info.cc   |   6 +
 be/src/codegen/codegen-anyval-read-write-info.h    |  18 +-
 be/src/runtime/collection-value.cc                 |   1 -
 be/src/runtime/collection-value.h                  |  18 -
 be/src/runtime/descriptors.cc                      | 378 +++++++++++++++++++--
 be/src/runtime/descriptors.h                       | 107 ++++--
 be/src/runtime/exec-env.cc                         |   2 +-
 be/src/runtime/krpc-data-stream-recvr.cc           |   6 +-
 be/src/runtime/query-state.cc                      |  14 +-
 be/src/runtime/raw-value.cc                        |  98 +++++-
 be/src/runtime/raw-value.h                         |  36 +-
 be/src/runtime/sorter-internal.h                   |  64 +++-
 be/src/runtime/sorter.cc                           | 162 +++++----
 be/src/runtime/tuple-ir.cc                         |   3 +
 be/src/runtime/tuple.cc                            | 128 ++++---
 be/src/runtime/tuple.h                             |  78 +++--
 be/src/util/periodic-counter-updater.cc            | 103 ++++--
 be/src/util/periodic-counter-updater.h             |  22 +-
 be/src/util/runtime-profile-counters.h             |  12 +-
 be/src/util/runtime-profile-test.cc                |   3 +-
 be/src/util/runtime-profile.cc                     |  16 +-
 be/src/util/runtime-profile.h                      |  11 +-
 be/src/util/streaming-sampler.h                    |   2 +-
 common/thrift/Query.thrift                         |   2 +-
 .../java/org/apache/impala/analysis/Analyzer.java  |   7 +-
 .../java/org/apache/impala/analysis/QueryStmt.java |  11 +-
 .../java/org/apache/impala/analysis/SortInfo.java  |  56 +--
 .../apache/impala/analysis/TupleDescriptor.java    |  52 +--
 .../org/apache/impala/planner/AnalyticPlanner.java |   8 +-
 .../java/org/apache/impala/planner/UnionNode.java  |   8 +-
 testdata/ComplexTypesTbl/arrays_big.parq           | Bin 0 -> 19445031 bytes
 testdata/ComplexTypesTbl/simple_arrays_big.parq    | Bin 10252963 -> 0 bytes
 testdata/data/README                               |  76 ++++-
 .../functional/functional_schema_template.sql      |  14 +-
 .../datasets/functional/schema_constraints.csv     |   4 +-
 .../QueryTest/nested-array-in-select-list.test     |  86 ++---
 .../QueryTest/nested-map-in-select-list.test       |  54 ++-
 .../QueryTest/partitioned-top-n-complex.test       |  37 +-
 .../queries/QueryTest/sort-complex.test            | 227 ++++++-------
 .../queries/QueryTest/top-n-complex.test           | 171 +++++++---
 tests/query_test/test_observability.py             |  37 +-
 tests/query_test/test_queries.py                   |   1 -
 tests/query_test/test_sort.py                      |  24 +-
 43 files changed, 1487 insertions(+), 676 deletions(-)
 create mode 100644 testdata/ComplexTypesTbl/arrays_big.parq
 delete mode 100644 testdata/ComplexTypesTbl/simple_arrays_big.parq

Reply via email to