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 5a00a4c  IMPALA-10320: Specify expression selectivity for BoolLiteral.
     new fa525df  IMPALA-7876: COMPUTE STATS TABLESAMPLE is not updating number 
of estimated rows
     new 8a4539d  IMPALA-10279: Import CPC functionality from DataSketches
     new 1c72c5a  IMPALA-10234: Add support for cookie authentication to 
impala-shell

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/exprs/CMakeLists.txt                        |    3 +-
 be/src/exprs/datasketches-test.cc                  |   45 +
 be/src/thirdparty/datasketches/HllUtil.hpp         |   18 +-
 be/src/thirdparty/datasketches/README.md           |    9 +-
 be/src/thirdparty/datasketches/binomial_bounds.hpp |  458 ++
 .../{common_defs.hpp => ceiling_power_of_2.hpp}    |   25 +-
 be/src/thirdparty/datasketches/common_defs.hpp     |   15 +
 .../thirdparty/datasketches/compression_data.hpp   | 6022 ++++++++++++++++++++
 .../datasketches/conditional_back_inserter.hpp     |   68 +
 .../datasketches/conditional_forward.hpp           |   70 +
 be/src/thirdparty/datasketches/cpc_common.hpp      |   62 +
 be/src/thirdparty/datasketches/cpc_compressor.hpp  |  147 +
 .../datasketches/cpc_compressor_impl.hpp           |  742 +++
 be/src/thirdparty/datasketches/cpc_confidence.hpp  |  167 +
 be/src/thirdparty/datasketches/cpc_sketch.hpp      |  311 +
 be/src/thirdparty/datasketches/cpc_sketch_impl.hpp |  810 +++
 be/src/thirdparty/datasketches/cpc_union.hpp       |  102 +
 be/src/thirdparty/datasketches/cpc_union_impl.hpp  |  346 ++
 be/src/thirdparty/datasketches/cpc_util.hpp        |  137 +
 be/src/thirdparty/datasketches/icon_estimator.hpp  |  274 +
 be/src/thirdparty/datasketches/kxp_byte_lookup.hpp |   81 +
 be/src/thirdparty/datasketches/serde.hpp           |   30 +-
 be/src/thirdparty/datasketches/u32_table.hpp       |   84 +
 be/src/thirdparty/datasketches/u32_table_impl.hpp  |  266 +
 .../apache/impala/analysis/ComputeStatsStmt.java   |    8 +-
 .../impala/customcluster/LdapImpalaShellTest.java  |   38 +-
 shell/ImpalaHttpClient.py                          |   44 +-
 shell/cookie_util.py                               |   69 +
 shell/impala_client.py                             |   12 +-
 shell/impala_shell.py                              |    6 +-
 shell/make_shell_tarball.sh                        |    1 +
 shell/packaging/make_python_package.sh             |    1 +
 tests/common/impala_test_suite.py                  |    2 +-
 tests/custom_cluster/test_stats_extrapolation.py   |    9 +
 tests/metadata/test_stats_extrapolation.py         |   17 +-
 tests/shell/test_cookie_util.py                    |  129 +
 36 files changed, 10560 insertions(+), 68 deletions(-)
 create mode 100644 be/src/thirdparty/datasketches/binomial_bounds.hpp
 copy be/src/thirdparty/datasketches/{common_defs.hpp => 
ceiling_power_of_2.hpp} (68%)
 create mode 100644 be/src/thirdparty/datasketches/compression_data.hpp
 create mode 100644 be/src/thirdparty/datasketches/conditional_back_inserter.hpp
 create mode 100644 be/src/thirdparty/datasketches/conditional_forward.hpp
 create mode 100644 be/src/thirdparty/datasketches/cpc_common.hpp
 create mode 100644 be/src/thirdparty/datasketches/cpc_compressor.hpp
 create mode 100644 be/src/thirdparty/datasketches/cpc_compressor_impl.hpp
 create mode 100644 be/src/thirdparty/datasketches/cpc_confidence.hpp
 create mode 100644 be/src/thirdparty/datasketches/cpc_sketch.hpp
 create mode 100644 be/src/thirdparty/datasketches/cpc_sketch_impl.hpp
 create mode 100644 be/src/thirdparty/datasketches/cpc_union.hpp
 create mode 100644 be/src/thirdparty/datasketches/cpc_union_impl.hpp
 create mode 100644 be/src/thirdparty/datasketches/cpc_util.hpp
 create mode 100644 be/src/thirdparty/datasketches/icon_estimator.hpp
 create mode 100644 be/src/thirdparty/datasketches/kxp_byte_lookup.hpp
 create mode 100644 be/src/thirdparty/datasketches/u32_table.hpp
 create mode 100644 be/src/thirdparty/datasketches/u32_table_impl.hpp
 create mode 100644 shell/cookie_util.py
 create mode 100644 tests/shell/test_cookie_util.py

Reply via email to