mirror of
https://github.com/apache/impala.git
synced 2025-12-22 03:18:15 -05:00
We are going to publish impala-shell release 4.1.0a1 on PyPi. This patch upgrades following three python libraries which are used for generating egg files when building impala-shell tarball. upgrade bitarray from 1.2.1 to 2.3.0 upgrade prettytable from 0.7.1 to 0.7.2 upgrade thrift_sasl from 0.4.2 to 0.4.3 Updates shell/packaging/requirements.txt for the versions of dependent Python libraries. Testing: - Ran core tests. - Built impala-shell package impala_shell-4.1.0a1.tar.gz, installed impala-shell package from local impala_shell-4.1.0a1.tar.gz, verified impala-shell was installed in ~/.local/lib/python2.7/site-packages. Verified the version of installed impala-shell and dependent Python libraries as expected. - Set IMPALA_SHELL_HOME as ~/.local/lib/python2.7/site-packages/ impala_shell, copied over egg files under installed impala-shell python package so we can run the end-to-end unit tests against the impala-shell installed with the package downloaded from PyPi. Passed end-to-end impala-shell unit tests. - Verified the impala-shell tarball generated by shell/make_shell_tarball.sh. Change-Id: I378404e2407396d4de3bb0eea4d49a9c5bb4e46a Reviewed-on: http://gerrit.cloudera.org:8080/17826 Reviewed-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com> Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
27 lines
841 B
Plaintext
27 lines
841 B
Plaintext
Dependency of files
|
|
-------------------
|
|
|
|
A depends on B A --------> B
|
|
|
|
|
|
A imports B in a function A - - - - > B
|
|
|
|
|
|
|
|
+------------+ +------------+
|
|
| util.py |------->| _util.c |
|
|
+------------+ +------------+
|
|
| ^
|
|
| |
|
|
| +--------------------------------------------------+
|
|
| | |
|
|
V v |
|
|
+-------------+ - - - > +------------------+ - - - > +--------------+
|
|
| __init__.py | | test_bitarray.py | | test_util.py |
|
|
+-------------+ <------ +------------------+ <------ +--------------+
|
|
|
|
|
V
|
|
+-------------+
|
|
| _bitarray.c |
|
|
+-------------+
|