This is an automated email from the ASF dual-hosted git repository.
joemcdonnell pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git
from df8cb46f7 IMPALA-14038: Pull in KUDU-3663 to handle certs with
RSASSA-PSS
new ea0969a77 IMPALA-11980 (part 2): Fix absolute import issues for
impala_shell
new 665601606 IMPALA-14032: Fix broken query timeline after webUI refactor
in IMPALA-13389
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:
bin/impala-shell.sh | 19 ++---
bin/rat_exclude_files.txt | 8 +--
bin/set-pythonpath.sh | 2 +-
common/thrift/CMakeLists.txt | 11 ++-
shell/.gitignore | 1 +
shell/CMakeLists.txt | 2 +-
shell/{packaging => }/MANIFEST.in | 2 +
shell/{packaging => }/README.md | 0
shell/gen_impala_build_version.sh | 6 +-
shell/{ => impala_shell}/ImpalaHttpClient.py | 23 +++---
.../TSSLSocketWithWildcardSAN.py | 5 +-
shell/{ => impala_shell}/__init__.py | 0
shell/{ => impala_shell}/compatibility.py | 3 +-
shell/{ => impala_shell}/cookie_util.py | 1 +
shell/{ => impala_shell}/exec_summary.py | 0
shell/{ => impala_shell}/impala_client.py | 82 ++++++++++++++--------
shell/{ => impala_shell}/impala_shell.py | 58 +++++++++------
.../impala_shell_config_defaults.py | 1 -
shell/{ => impala_shell}/kerberos_util.py | 0
shell/{ => impala_shell}/option_parser.py | 10 +--
shell/{ => impala_shell}/shell_exceptions.py | 0
shell/{ => impala_shell}/shell_output.py | 19 +++--
shell/{ => impala_shell}/thrift_printer.py | 0
shell/{ => impala_shell}/value_converter.py | 5 +-
shell/packaging/__init__.py | 40 -----------
shell/{ => packaging}/impala-shell | 0
shell/packaging/make_python_package.sh | 37 +++-------
shell/{ => packaging}/make_shell_tarball.sh | 2 +-
shell/{packaging => }/requirements.txt | 0
shell/{packaging => }/setup.py | 0
tests/beeswax/impala_beeswax.py | 2 +-
tests/common/impala_connection.py | 4 +-
tests/custom_cluster/test_hs2_fault_injection.py | 21 +++---
.../test_shell_interactive_reconnect.py | 13 ++--
tests/custom_cluster/test_thrift_socket.py | 10 +--
tests/shell/test_cookie_util.py | 14 ++--
tests/shell/test_kerberos_util.py | 2 +-
tests/shell/test_shell_client.py | 10 ++-
tests/shell/test_shell_commandline.py | 37 ++++++----
tests/shell/test_shell_interactive.py | 42 ++++++-----
tests/shell/util.py | 28 ++++----
www/scripts/query_timeline/fragment_diagram.js | 8 +--
42 files changed, 265 insertions(+), 263 deletions(-)
rename shell/{packaging => }/MANIFEST.in (53%)
rename shell/{packaging => }/README.md (100%)
rename shell/{ => impala_shell}/ImpalaHttpClient.py (98%)
rename shell/{ => impala_shell}/TSSLSocketWithWildcardSAN.py (98%)
rename shell/{ => impala_shell}/__init__.py (100%)
rename shell/{ => impala_shell}/compatibility.py (94%)
rename shell/{ => impala_shell}/cookie_util.py (97%)
rename shell/{ => impala_shell}/exec_summary.py (100%)
mode change 100755 => 100644
rename shell/{ => impala_shell}/impala_client.py (97%)
rename shell/{ => impala_shell}/impala_shell.py (98%)
rename shell/{ => impala_shell}/impala_shell_config_defaults.py (99%)
rename shell/{ => impala_shell}/kerberos_util.py (100%)
rename shell/{ => impala_shell}/option_parser.py (98%)
mode change 100755 => 100644
rename shell/{ => impala_shell}/shell_exceptions.py (100%)
rename shell/{ => impala_shell}/shell_output.py (95%)
rename shell/{ => impala_shell}/thrift_printer.py (100%)
rename shell/{ => impala_shell}/value_converter.py (98%)
delete mode 100644 shell/packaging/__init__.py
rename shell/{ => packaging}/impala-shell (100%)
rename shell/{ => packaging}/make_shell_tarball.sh (98%)
rename shell/{packaging => }/requirements.txt (100%)
rename shell/{packaging => }/setup.py (100%)