This is an automated email from the ASF dual-hosted git repository. laszlog pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
from b1a985be5 IMPALA-13680: Avoid flush() when closing TSSLSocket new 26625e46b IMPALA-13683: Add env var to skip infra tests and verifiers. new b47955df1 IMPALA-13701: Rewrite test_invalidate_stale_partition_on_reload new 98b584a45 IMPALA-13481: Add support for various agg and analytic functions new a159eb52f IMPALA-13677: Support remote scratch directory cleanup at Impala daemon startup The 4 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/runtime/io/disk-io-mgr.cc | 1 + be/src/runtime/tmp-file-mgr-test.cc | 2 + be/src/runtime/tmp-file-mgr.cc | 63 ++++- be/src/runtime/tmp-file-mgr.h | 9 +- bin/run-all-tests.sh | 16 +- java/calcite-planner/src/main/codegen/config.fmpp | 13 + .../src/main/codegen/templates/Parser.jj | 81 +----- .../impala/calcite/functions/FunctionResolver.java | 22 ++ .../operators/ImpalaCustomOperatorTable.java | 14 + .../calcite/operators/ImpalaOperatorTable.java | 6 +- .../impala/calcite/rules/RewriteRexOverRule.java | 288 +++++++++++++++++++++ .../impala/calcite/service/CalciteOptimizer.java | 2 + .../queries/QueryTest/analytic-fns.test | 132 ++++++++++ tests/custom_cluster/test_events_custom_configs.py | 54 +++- tests/custom_cluster/test_scratch_disk.py | 40 +++ tests/infra/test_run_workload.py | 58 +++++ tests/run-tests.py | 12 +- 17 files changed, 706 insertions(+), 107 deletions(-) create mode 100644 java/calcite-planner/src/main/java/org/apache/impala/calcite/rules/RewriteRexOverRule.java create mode 100644 tests/infra/test_run_workload.py