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

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


    from d7068ac  IMPALA-10894: Pushing down predicates in reading "original 
files" of ACID tables
     new 03a7a59  IMPALA-10876: Support to download JWKS from given URL
     new 9e76a8f  IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi

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:
 CMakeLists.txt                                     |    5 +
 be/CMakeLists.txt                                  |    5 +-
 be/src/kudu/util/CMakeLists.txt                    |   26 +-
 be/src/rpc/authentication.cc                       |    8 +
 be/src/service/impala-server.cc                    |    6 +-
 be/src/util/jwt-util-internal.h                    |   88 +-
 be/src/util/jwt-util-test.cc                       |   73 +-
 be/src/util/jwt-util.cc                            |  207 +-
 be/src/util/jwt-util.h                             |   22 +-
 bin/bootstrap_toolchain.py                         |    4 +-
 bin/impala-config.sh                               |    2 +
 bin/rat_exclude_files.txt                          |    8 +-
 cmake_modules/{FindGLog.cmake => FindCurl.cmake}   |   41 +-
 .../impala/customcluster/CustomClusterRunner.java  |   22 +-
 .../apache/impala/customcluster/JwtHttpTest.java   |  210 +-
 .../impala/customcluster/JwtWebserverTest.java     |    4 +-
 shell/ext-py/bitarray-1.2.1/AUTHORS                |   22 -
 shell/ext-py/bitarray-1.2.1/CHANGE_LOG             |  254 --
 shell/ext-py/bitarray-1.2.1/LICENSE                |   48 -
 shell/ext-py/bitarray-1.2.1/README.md              |  695 ----
 shell/ext-py/bitarray-1.2.1/TODO                   |   95 -
 shell/ext-py/bitarray-1.2.1/bitarray/__init__.py   |   91 -
 shell/ext-py/bitarray-1.2.1/bitarray/_bitarray.c   | 3292 ---------------
 shell/ext-py/bitarray-1.2.1/bitarray/_util.c       |  422 --
 .../bitarray-1.2.1/bitarray/test_bitarray.py       | 2393 -----------
 shell/ext-py/bitarray-1.2.1/bitarray/test_util.py  |  590 ---
 shell/ext-py/bitarray-1.2.1/bitarray/util.py       |  274 --
 shell/ext-py/bitarray-1.2.1/update_readme.py       |  112 -
 shell/ext-py/bitarray-2.3.0/CHANGE_LOG             |  569 +++
 shell/ext-py/bitarray-2.3.0/LICENSE                |   46 +
 shell/ext-py/bitarray-2.3.0/README.rst             |  836 ++++
 shell/ext-py/bitarray-2.3.0/bitarray/__init__.py   |   83 +
 shell/ext-py/bitarray-2.3.0/bitarray/__init__.pyi  |  126 +
 shell/ext-py/bitarray-2.3.0/bitarray/_bitarray.c   | 3752 +++++++++++++++++
 shell/ext-py/bitarray-2.3.0/bitarray/_util.c       |  864 ++++
 .../bitarray-2.3.0/bitarray/architecture.txt       |   26 +
 shell/ext-py/bitarray-2.3.0/bitarray/bitarray.h    |  182 +
 shell/ext-py/bitarray-2.3.0/bitarray/copy_n.txt    |  105 +
 .../ext-py/bitarray-2.3.0/bitarray/py.typed        |    0
 .../bitarray-2.3.0/bitarray/pythoncapi_compat.h    |  347 ++
 .../bitarray-2.3.0/bitarray/test_bitarray.py       | 4253 ++++++++++++++++++++
 .../bitarray-2.3.0/bitarray/test_data.pickle       |  Bin 0 -> 356 bytes
 shell/ext-py/bitarray-2.3.0/bitarray/test_util.py  | 1504 +++++++
 shell/ext-py/bitarray-2.3.0/bitarray/util.py       |  408 ++
 shell/ext-py/bitarray-2.3.0/bitarray/util.pyi      |   49 +
 shell/ext-py/bitarray-2.3.0/contributing.md        |   31 +
 .../{bitarray-1.2.1 => bitarray-2.3.0}/setup.py    |   21 +-
 shell/ext-py/bitarray-2.3.0/update_doc.py          |  195 +
 .../CHANGELOG                                      |    0
 .../COPYING                                        |    0
 .../MANIFEST.in                                    |    0
 .../PKG-INFO                                       |    2 +-
 .../README                                         |    0
 .../prettytable.py                                 |   69 +-
 .../setup.cfg                                      |    0
 .../setup.py                                       |    0
 shell/ext-py/thrift_sasl-0.4.2/CHANGELOG.md        |   15 -
 shell/ext-py/thrift_sasl-0.4.2/README.md           |    7 -
 shell/ext-py/thrift_sasl-0.4.3/CHANGELOG.md        |   34 +
 .../LICENSE                                        |    0
 shell/ext-py/thrift_sasl-0.4.3/README.md           |    4 +
 .../setup.py                                       |   21 +-
 .../thrift_sasl/__init__.py                        |   14 +-
 shell/packaging/requirements.txt                   |    4 +-
 testdata/jwt/jwks_es256.json                       |    6 +
 65 files changed, 14072 insertions(+), 8520 deletions(-)
 copy cmake_modules/{FindGLog.cmake => FindCurl.cmake} (55%)
 delete mode 100644 shell/ext-py/bitarray-1.2.1/AUTHORS
 delete mode 100644 shell/ext-py/bitarray-1.2.1/CHANGE_LOG
 delete mode 100644 shell/ext-py/bitarray-1.2.1/LICENSE
 delete mode 100644 shell/ext-py/bitarray-1.2.1/README.md
 delete mode 100644 shell/ext-py/bitarray-1.2.1/TODO
 delete mode 100644 shell/ext-py/bitarray-1.2.1/bitarray/__init__.py
 delete mode 100644 shell/ext-py/bitarray-1.2.1/bitarray/_bitarray.c
 delete mode 100644 shell/ext-py/bitarray-1.2.1/bitarray/_util.c
 delete mode 100644 shell/ext-py/bitarray-1.2.1/bitarray/test_bitarray.py
 delete mode 100644 shell/ext-py/bitarray-1.2.1/bitarray/test_util.py
 delete mode 100644 shell/ext-py/bitarray-1.2.1/bitarray/util.py
 delete mode 100644 shell/ext-py/bitarray-1.2.1/update_readme.py
 create mode 100644 shell/ext-py/bitarray-2.3.0/CHANGE_LOG
 create mode 100644 shell/ext-py/bitarray-2.3.0/LICENSE
 create mode 100644 shell/ext-py/bitarray-2.3.0/README.rst
 create mode 100644 shell/ext-py/bitarray-2.3.0/bitarray/__init__.py
 create mode 100644 shell/ext-py/bitarray-2.3.0/bitarray/__init__.pyi
 create mode 100644 shell/ext-py/bitarray-2.3.0/bitarray/_bitarray.c
 create mode 100644 shell/ext-py/bitarray-2.3.0/bitarray/_util.c
 create mode 100644 shell/ext-py/bitarray-2.3.0/bitarray/architecture.txt
 create mode 100644 shell/ext-py/bitarray-2.3.0/bitarray/bitarray.h
 create mode 100644 shell/ext-py/bitarray-2.3.0/bitarray/copy_n.txt
 copy tests/stress/__init__.py => shell/ext-py/bitarray-2.3.0/bitarray/py.typed 
(100%)
 create mode 100644 shell/ext-py/bitarray-2.3.0/bitarray/pythoncapi_compat.h
 create mode 100644 shell/ext-py/bitarray-2.3.0/bitarray/test_bitarray.py
 create mode 100644 shell/ext-py/bitarray-2.3.0/bitarray/test_data.pickle
 create mode 100644 shell/ext-py/bitarray-2.3.0/bitarray/test_util.py
 create mode 100644 shell/ext-py/bitarray-2.3.0/bitarray/util.py
 create mode 100644 shell/ext-py/bitarray-2.3.0/bitarray/util.pyi
 create mode 100644 shell/ext-py/bitarray-2.3.0/contributing.md
 rename shell/ext-py/{bitarray-1.2.1 => bitarray-2.3.0}/setup.py (69%)
 create mode 100644 shell/ext-py/bitarray-2.3.0/update_doc.py
 rename shell/ext-py/{prettytable-0.7.1 => prettytable-0.7.2}/CHANGELOG (100%)
 rename shell/ext-py/{prettytable-0.7.1 => prettytable-0.7.2}/COPYING (100%)
 rename shell/ext-py/{prettytable-0.7.1 => prettytable-0.7.2}/MANIFEST.in (100%)
 rename shell/ext-py/{prettytable-0.7.1 => prettytable-0.7.2}/PKG-INFO (97%)
 rename shell/ext-py/{prettytable-0.7.1 => prettytable-0.7.2}/README (100%)
 rename shell/ext-py/{prettytable-0.7.1 => prettytable-0.7.2}/prettytable.py 
(97%)
 mode change 100755 => 100644
 rename shell/ext-py/{prettytable-0.7.1 => prettytable-0.7.2}/setup.cfg (100%)
 rename shell/ext-py/{prettytable-0.7.1 => prettytable-0.7.2}/setup.py (100%)
 delete mode 100644 shell/ext-py/thrift_sasl-0.4.2/CHANGELOG.md
 delete mode 100644 shell/ext-py/thrift_sasl-0.4.2/README.md
 create mode 100644 shell/ext-py/thrift_sasl-0.4.3/CHANGELOG.md
 rename shell/ext-py/{thrift_sasl-0.4.2 => thrift_sasl-0.4.3}/LICENSE (100%)
 create mode 100644 shell/ext-py/thrift_sasl-0.4.3/README.md
 rename shell/ext-py/{thrift_sasl-0.4.2 => thrift_sasl-0.4.3}/setup.py (77%)
 rename shell/ext-py/{thrift_sasl-0.4.2 => 
thrift_sasl-0.4.3}/thrift_sasl/__init__.py (94%)
 create mode 100644 testdata/jwt/jwks_es256.json

Reply via email to