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 6fa3547  IMPALA-5847: Fix incorrect use of SET in .test files
     new 561158b  IMPALA-3323: Fix unrecognizable shell option when 
--config_file is specified
     new 9105c5c  IMPALA-8073: Fix FE tests that leak HMS connections
     new d1f2c1a  IMPALA-7941: part 1: detect cgroups memory limit
     new 969dea8  IMPALA-7979: Enhance decoders to support value-skipping

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/common/init.cc                              |   2 +
 be/src/exec/parquet/CMakeLists.txt                 |   1 +
 be/src/exec/parquet/parquet-bool-decoder-test.cc   | 108 +++++++
 be/src/exec/parquet/parquet-bool-decoder.cc        |  28 ++
 be/src/exec/parquet/parquet-bool-decoder.h         |   4 +
 be/src/util/CMakeLists.txt                         |   2 +
 be/src/util/bit-stream-utils-test.cc               | 207 +++++++++++++
 be/src/util/bit-stream-utils.h                     |   5 +
 be/src/util/bit-stream-utils.inline.h              |  12 +
 be/src/util/cgroup-util.cc                         | 177 +++++++++++
 be/src/util/cgroup-util.h                          |  62 ++++
 be/src/util/default-path-handlers.cc               |  27 +-
 be/src/util/dict-encoding.h                        |  20 ++
 be/src/util/dict-test.cc                           |  92 +++++-
 be/src/util/proc-info-test.cc                      |  21 ++
 be/src/util/process-state-info.cc                  |  34 +--
 be/src/util/process-state-info.h                   |  13 +-
 be/src/util/rle-encoding.h                         |  87 ++++++
 be/src/util/rle-test.cc                            | 330 +++++++++++++--------
 .../java/org/apache/impala/catalog/Catalog.java    |   4 +-
 .../org/apache/impala/analysis/AuditingTest.java   |  19 +-
 .../apache/impala/analysis/AuthorizationTest.java  | 149 +++++-----
 .../impala/analysis/StmtMetadataLoaderTest.java    |  26 +-
 .../catalog/CatalogObjectToFromThriftTest.java     |   1 -
 .../org/apache/impala/catalog/CatalogTest.java     |   4 +
 .../catalog/CatalogdTableInvalidatorTest.java      |   6 +-
 .../impala/catalog/PartialCatalogInfoTest.java     |   4 +
 .../org/apache/impala/common/FrontendTestBase.java |   1 +
 .../apache/impala/testutil/BlockIdGenerator.java   |  53 ++--
 .../apache/impala/testutil/ImpaladTestCatalog.java |   6 +
 .../org/apache/impala/util/SentryProxyTest.java    | 131 ++++----
 shell/impala_shell.py                              |   3 +-
 shell/option_parser.py                             |  30 +-
 tests/shell/good_impalarc                          |   1 +
 tests/shell/test_shell_commandline.py              |   1 +
 www/root.tmpl                                      |   4 +
 36 files changed, 1292 insertions(+), 383 deletions(-)
 create mode 100644 be/src/exec/parquet/parquet-bool-decoder-test.cc
 create mode 100644 be/src/util/bit-stream-utils-test.cc
 create mode 100644 be/src/util/cgroup-util.cc
 create mode 100644 be/src/util/cgroup-util.h

Reply via email to