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

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


    from 24f24b1  IMPALA-9902: add rewrite of TPC-DS q38
     new 9429ca7  IMPALA-9789: Disable ineffective bloom filters for Kudu scan
     new 7e456df  IMPALA-9632: Implement ds_hll_sketch() and ds_hll_estimate()
     new 7a5b1ba  IMPALA-9897: GROUPING SETS/CUBE/ROLLUP parsing and analysis

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/impala-ir.cc                        |   1 +
 be/src/exprs/CMakeLists.txt                        |   1 +
 be/src/exprs/aggregate-functions-ir.cc             | 128 +++++++++
 be/src/exprs/aggregate-functions.h                 |  11 +
 ...l-functions.cc => datasketches-functions-ir.cc} |  32 ++-
 .../datasketches-functions.h}                      |  19 +-
 be/src/exprs/datasketches-test.cc                  |  14 +-
 be/src/exprs/scalar-expr-evaluator.cc              |   2 +
 bin/impala-config.sh                               |   4 +-
 common/function-registry/impala_functions.py       |   3 +
 common/thrift/ImpalaInternalService.thrift         |   2 +-
 common/thrift/ImpalaService.thrift                 |   4 +-
 fe/src/main/cup/sql-parser.cup                     |  76 ++++-
 .../apache/impala/analysis/FunctionCallExpr.java   |   4 +
 .../org/apache/impala/analysis/GroupByClause.java  | 314 +++++++++++++++++++++
 .../org/apache/impala/analysis/SelectStmt.java     |  52 +++-
 .../org/apache/impala/analysis/StmtRewriter.java   |   6 +-
 .../apache/impala/catalog/AggregateFunction.java   |  11 +
 .../java/org/apache/impala/catalog/BuiltinsDb.java |  43 +++
 .../java/org/apache/impala/catalog/Function.java   |   8 +
 .../java/org/apache/impala/common/RuntimeEnv.java  |  10 +
 fe/src/main/jflex/sql-scanner.flex                 |  10 +-
 .../apache/impala/analysis/AnalyzeStmtsTest.java   | 215 +++++++++++++-
 .../org/apache/impala/analysis/AnalyzerTest.java   |  16 ++
 .../org/apache/impala/analysis/ParserTest.java     |  55 ++++
 .../java/org/apache/impala/analysis/ToSqlTest.java |  28 ++
 testdata/data/README                               |   6 +
 testdata/data/hll_sketches_from_hive.parquet       | Bin 0 -> 2928 bytes
 .../queries/QueryTest/datasketches-hll.test        | 168 +++++++++++
 .../{test_local_fs.py => test_datasketches.py}     |  21 +-
 30 files changed, 1194 insertions(+), 70 deletions(-)
 copy be/src/exprs/{conditional-functions.cc => datasketches-functions-ir.cc} 
(53%)
 copy be/src/{common/global-flags.h => exprs/datasketches-functions.h} (77%)
 create mode 100644 
fe/src/main/java/org/apache/impala/analysis/GroupByClause.java
 create mode 100644 testdata/data/hll_sketches_from_hive.parquet
 create mode 100644 
testdata/workloads/functional-query/queries/QueryTest/datasketches-hll.test
 copy tests/query_test/{test_local_fs.py => test_datasketches.py} (66%)

Reply via email to