You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@impala.apache.org by "Wenzhe Zhou (Code Review)" <ge...@cloudera.org> on 2021/09/07 18:12:02 UTC

[Impala-ASF-CR] IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi

Wenzhe Zhou has uploaded this change for review. ( http://gerrit.cloudera.org:8080/17826


Change subject: IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi
......................................................................

IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi

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
Copys the generated egg files to 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. Updates the versions of python
libraries in shell/packaging/requirements.txt.

Testing:
 - Tested by running gerrit-verify-dryrun.
 - 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 python libraries.
 - Set IMPALA_SHELL_HOME as ~/.local/lib/python2.7/site-packages/
   impala_shell, ran end-to-end impala-shell unit tests.

Change-Id: I378404e2407396d4de3bb0eea4d49a9c5bb4e46a
---
D shell/ext-py/bitarray-1.2.1/AUTHORS
D shell/ext-py/bitarray-1.2.1/CHANGE_LOG
D shell/ext-py/bitarray-1.2.1/LICENSE
D shell/ext-py/bitarray-1.2.1/README.md
D shell/ext-py/bitarray-1.2.1/TODO
D shell/ext-py/bitarray-1.2.1/bitarray/__init__.py
D shell/ext-py/bitarray-1.2.1/bitarray/_bitarray.c
D shell/ext-py/bitarray-1.2.1/bitarray/_util.c
D shell/ext-py/bitarray-1.2.1/bitarray/test_bitarray.py
D shell/ext-py/bitarray-1.2.1/bitarray/test_util.py
D shell/ext-py/bitarray-1.2.1/bitarray/util.py
D shell/ext-py/bitarray-1.2.1/update_readme.py
A shell/ext-py/bitarray-2.3.0/CHANGE_LOG
A shell/ext-py/bitarray-2.3.0/LICENSE
A shell/ext-py/bitarray-2.3.0/README.rst
A shell/ext-py/bitarray-2.3.0/bitarray/__init__.py
A shell/ext-py/bitarray-2.3.0/bitarray/__init__.pyi
A shell/ext-py/bitarray-2.3.0/bitarray/_bitarray.c
A shell/ext-py/bitarray-2.3.0/bitarray/_util.c
A shell/ext-py/bitarray-2.3.0/bitarray/architecture.txt
A shell/ext-py/bitarray-2.3.0/bitarray/bitarray.h
A shell/ext-py/bitarray-2.3.0/bitarray/copy_n.txt
A shell/ext-py/bitarray-2.3.0/bitarray/py.typed
A shell/ext-py/bitarray-2.3.0/bitarray/pythoncapi_compat.h
A shell/ext-py/bitarray-2.3.0/bitarray/test_bitarray.py
A shell/ext-py/bitarray-2.3.0/bitarray/test_data.pickle
A shell/ext-py/bitarray-2.3.0/bitarray/test_util.py
A shell/ext-py/bitarray-2.3.0/bitarray/util.py
A shell/ext-py/bitarray-2.3.0/bitarray/util.pyi
A shell/ext-py/bitarray-2.3.0/contributing.md
R shell/ext-py/bitarray-2.3.0/setup.py
A shell/ext-py/bitarray-2.3.0/update_doc.py
R shell/ext-py/prettytable-0.7.2/CHANGELOG
R shell/ext-py/prettytable-0.7.2/COPYING
R shell/ext-py/prettytable-0.7.2/MANIFEST.in
R shell/ext-py/prettytable-0.7.2/PKG-INFO
R shell/ext-py/prettytable-0.7.2/README
R shell/ext-py/prettytable-0.7.2/prettytable.py
R shell/ext-py/prettytable-0.7.2/setup.cfg
R shell/ext-py/prettytable-0.7.2/setup.py
D shell/ext-py/thrift_sasl-0.4.2/CHANGELOG.md
D shell/ext-py/thrift_sasl-0.4.2/README.md
A shell/ext-py/thrift_sasl-0.4.3/CHANGELOG.md
R shell/ext-py/thrift_sasl-0.4.3/LICENSE
A shell/ext-py/thrift_sasl-0.4.3/README.md
R shell/ext-py/thrift_sasl-0.4.3/setup.py
R shell/ext-py/thrift_sasl-0.4.3/thrift_sasl/__init__.py
M shell/packaging/MANIFEST.in
M shell/packaging/make_python_package.sh
M shell/packaging/requirements.txt
50 files changed, 13,502 insertions(+), 8,357 deletions(-)



  git pull ssh://gerrit.cloudera.org:29418/Impala-ASF refs/changes/26/17826/2
-- 
To view, visit http://gerrit.cloudera.org:8080/17826
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I378404e2407396d4de3bb0eea4d49a9c5bb4e46a
Gerrit-Change-Number: 17826
Gerrit-PatchSet: 2
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Bikramjeet Vig <bi...@cloudera.com>
Gerrit-Reviewer: Joe McDonnell <jo...@cloudera.com>

[Impala-ASF-CR] IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi

Posted by "Joe McDonnell (Code Review)" <ge...@cloudera.org>.
Joe McDonnell has posted comments on this change. ( http://gerrit.cloudera.org:8080/17826 )

Change subject: IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi
......................................................................


Patch Set 3: Code-Review+2

This makes sense to me.

The upgraded bitarray no longer supports Python 2.6, but that is fine, because we dropped support for Python 2.6 in the Impala 4.0.0 release.


-- 
To view, visit http://gerrit.cloudera.org:8080/17826
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I378404e2407396d4de3bb0eea4d49a9c5bb4e46a
Gerrit-Change-Number: 17826
Gerrit-PatchSet: 3
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Attila Jeges <at...@cloudera.com>
Gerrit-Reviewer: Bikramjeet Vig <bi...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Joe McDonnell <jo...@cloudera.com>
Gerrit-Comment-Date: Mon, 27 Sep 2021 22:05:01 +0000
Gerrit-HasComments: No

[Impala-ASF-CR] IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi

Posted by "Impala Public Jenkins (Code Review)" <ge...@cloudera.org>.
Impala Public Jenkins has submitted this change and it was merged. ( http://gerrit.cloudera.org:8080/17826 )

Change subject: IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi
......................................................................

IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi

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 <im...@cloudera.com>
Tested-by: Impala Public Jenkins <im...@cloudera.com>
---
M bin/rat_exclude_files.txt
D shell/ext-py/bitarray-1.2.1/AUTHORS
D shell/ext-py/bitarray-1.2.1/CHANGE_LOG
D shell/ext-py/bitarray-1.2.1/LICENSE
D shell/ext-py/bitarray-1.2.1/README.md
D shell/ext-py/bitarray-1.2.1/TODO
D shell/ext-py/bitarray-1.2.1/bitarray/__init__.py
D shell/ext-py/bitarray-1.2.1/bitarray/_bitarray.c
D shell/ext-py/bitarray-1.2.1/bitarray/_util.c
D shell/ext-py/bitarray-1.2.1/bitarray/test_bitarray.py
D shell/ext-py/bitarray-1.2.1/bitarray/test_util.py
D shell/ext-py/bitarray-1.2.1/bitarray/util.py
D shell/ext-py/bitarray-1.2.1/update_readme.py
A shell/ext-py/bitarray-2.3.0/CHANGE_LOG
A shell/ext-py/bitarray-2.3.0/LICENSE
A shell/ext-py/bitarray-2.3.0/README.rst
A shell/ext-py/bitarray-2.3.0/bitarray/__init__.py
A shell/ext-py/bitarray-2.3.0/bitarray/__init__.pyi
A shell/ext-py/bitarray-2.3.0/bitarray/_bitarray.c
A shell/ext-py/bitarray-2.3.0/bitarray/_util.c
A shell/ext-py/bitarray-2.3.0/bitarray/architecture.txt
A shell/ext-py/bitarray-2.3.0/bitarray/bitarray.h
A shell/ext-py/bitarray-2.3.0/bitarray/copy_n.txt
A shell/ext-py/bitarray-2.3.0/bitarray/py.typed
A shell/ext-py/bitarray-2.3.0/bitarray/pythoncapi_compat.h
A shell/ext-py/bitarray-2.3.0/bitarray/test_bitarray.py
A shell/ext-py/bitarray-2.3.0/bitarray/test_data.pickle
A shell/ext-py/bitarray-2.3.0/bitarray/test_util.py
A shell/ext-py/bitarray-2.3.0/bitarray/util.py
A shell/ext-py/bitarray-2.3.0/bitarray/util.pyi
A shell/ext-py/bitarray-2.3.0/contributing.md
R shell/ext-py/bitarray-2.3.0/setup.py
A shell/ext-py/bitarray-2.3.0/update_doc.py
R shell/ext-py/prettytable-0.7.2/CHANGELOG
R shell/ext-py/prettytable-0.7.2/COPYING
R shell/ext-py/prettytable-0.7.2/MANIFEST.in
R shell/ext-py/prettytable-0.7.2/PKG-INFO
R shell/ext-py/prettytable-0.7.2/README
R shell/ext-py/prettytable-0.7.2/prettytable.py
R shell/ext-py/prettytable-0.7.2/setup.cfg
R shell/ext-py/prettytable-0.7.2/setup.py
D shell/ext-py/thrift_sasl-0.4.2/CHANGELOG.md
D shell/ext-py/thrift_sasl-0.4.2/README.md
A shell/ext-py/thrift_sasl-0.4.3/CHANGELOG.md
R shell/ext-py/thrift_sasl-0.4.3/LICENSE
A shell/ext-py/thrift_sasl-0.4.3/README.md
R shell/ext-py/thrift_sasl-0.4.3/setup.py
R shell/ext-py/thrift_sasl-0.4.3/thrift_sasl/__init__.py
M shell/packaging/requirements.txt
49 files changed, 13,502 insertions(+), 8,359 deletions(-)

Approvals:
  Impala Public Jenkins: Looks good to me, approved; Verified

-- 
To view, visit http://gerrit.cloudera.org:8080/17826
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: I378404e2407396d4de3bb0eea4d49a9c5bb4e46a
Gerrit-Change-Number: 17826
Gerrit-PatchSet: 5
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Attila Jeges <at...@cloudera.com>
Gerrit-Reviewer: Bikramjeet Vig <bi...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Joe McDonnell <jo...@cloudera.com>

[Impala-ASF-CR] IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi

Posted by "Impala Public Jenkins (Code Review)" <ge...@cloudera.org>.
Impala Public Jenkins has posted comments on this change. ( http://gerrit.cloudera.org:8080/17826 )

Change subject: IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi
......................................................................


Patch Set 4:

Build started: https://jenkins.impala.io/job/gerrit-verify-dryrun/7495/ DRY_RUN=false


-- 
To view, visit http://gerrit.cloudera.org:8080/17826
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I378404e2407396d4de3bb0eea4d49a9c5bb4e46a
Gerrit-Change-Number: 17826
Gerrit-PatchSet: 4
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Attila Jeges <at...@cloudera.com>
Gerrit-Reviewer: Bikramjeet Vig <bi...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Joe McDonnell <jo...@cloudera.com>
Gerrit-Comment-Date: Mon, 27 Sep 2021 22:34:54 +0000
Gerrit-HasComments: No

[Impala-ASF-CR] IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi

Posted by "Impala Public Jenkins (Code Review)" <ge...@cloudera.org>.
Impala Public Jenkins has posted comments on this change. ( http://gerrit.cloudera.org:8080/17826 )

Change subject: IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi
......................................................................


Patch Set 3:

Build Successful 

https://jenkins.impala.io/job/gerrit-code-review-checks/9435/ : Initial code review checks passed. Use gerrit-verify-dryrun-external or gerrit-verify-dryrun to run full precommit tests.


-- 
To view, visit http://gerrit.cloudera.org:8080/17826
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I378404e2407396d4de3bb0eea4d49a9c5bb4e46a
Gerrit-Change-Number: 17826
Gerrit-PatchSet: 3
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Attila Jeges <at...@cloudera.com>
Gerrit-Reviewer: Bikramjeet Vig <bi...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Joe McDonnell <jo...@cloudera.com>
Gerrit-Comment-Date: Tue, 07 Sep 2021 20:36:29 +0000
Gerrit-HasComments: No

[Impala-ASF-CR] IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi

Posted by "Impala Public Jenkins (Code Review)" <ge...@cloudera.org>.
Impala Public Jenkins has posted comments on this change. ( http://gerrit.cloudera.org:8080/17826 )

Change subject: IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi
......................................................................


Patch Set 4: Code-Review+2


-- 
To view, visit http://gerrit.cloudera.org:8080/17826
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I378404e2407396d4de3bb0eea4d49a9c5bb4e46a
Gerrit-Change-Number: 17826
Gerrit-PatchSet: 4
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Attila Jeges <at...@cloudera.com>
Gerrit-Reviewer: Bikramjeet Vig <bi...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Joe McDonnell <jo...@cloudera.com>
Gerrit-Comment-Date: Mon, 27 Sep 2021 22:34:53 +0000
Gerrit-HasComments: No

[Impala-ASF-CR] IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi

Posted by "Bikramjeet Vig (Code Review)" <ge...@cloudera.org>.
Bikramjeet Vig has posted comments on this change. ( http://gerrit.cloudera.org:8080/17826 )

Change subject: IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi
......................................................................


Patch Set 3: Code-Review+1


-- 
To view, visit http://gerrit.cloudera.org:8080/17826
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I378404e2407396d4de3bb0eea4d49a9c5bb4e46a
Gerrit-Change-Number: 17826
Gerrit-PatchSet: 3
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Attila Jeges <at...@cloudera.com>
Gerrit-Reviewer: Bikramjeet Vig <bi...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Joe McDonnell <jo...@cloudera.com>
Gerrit-Comment-Date: Wed, 15 Sep 2021 18:52:04 +0000
Gerrit-HasComments: No

[Impala-ASF-CR] IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi

Posted by "Wenzhe Zhou (Code Review)" <ge...@cloudera.org>.
Wenzhe Zhou has uploaded a new patch set (#3). ( http://gerrit.cloudera.org:8080/17826 )

Change subject: IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi
......................................................................

IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi

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
---
M bin/rat_exclude_files.txt
D shell/ext-py/bitarray-1.2.1/AUTHORS
D shell/ext-py/bitarray-1.2.1/CHANGE_LOG
D shell/ext-py/bitarray-1.2.1/LICENSE
D shell/ext-py/bitarray-1.2.1/README.md
D shell/ext-py/bitarray-1.2.1/TODO
D shell/ext-py/bitarray-1.2.1/bitarray/__init__.py
D shell/ext-py/bitarray-1.2.1/bitarray/_bitarray.c
D shell/ext-py/bitarray-1.2.1/bitarray/_util.c
D shell/ext-py/bitarray-1.2.1/bitarray/test_bitarray.py
D shell/ext-py/bitarray-1.2.1/bitarray/test_util.py
D shell/ext-py/bitarray-1.2.1/bitarray/util.py
D shell/ext-py/bitarray-1.2.1/update_readme.py
A shell/ext-py/bitarray-2.3.0/CHANGE_LOG
A shell/ext-py/bitarray-2.3.0/LICENSE
A shell/ext-py/bitarray-2.3.0/README.rst
A shell/ext-py/bitarray-2.3.0/bitarray/__init__.py
A shell/ext-py/bitarray-2.3.0/bitarray/__init__.pyi
A shell/ext-py/bitarray-2.3.0/bitarray/_bitarray.c
A shell/ext-py/bitarray-2.3.0/bitarray/_util.c
A shell/ext-py/bitarray-2.3.0/bitarray/architecture.txt
A shell/ext-py/bitarray-2.3.0/bitarray/bitarray.h
A shell/ext-py/bitarray-2.3.0/bitarray/copy_n.txt
A shell/ext-py/bitarray-2.3.0/bitarray/py.typed
A shell/ext-py/bitarray-2.3.0/bitarray/pythoncapi_compat.h
A shell/ext-py/bitarray-2.3.0/bitarray/test_bitarray.py
A shell/ext-py/bitarray-2.3.0/bitarray/test_data.pickle
A shell/ext-py/bitarray-2.3.0/bitarray/test_util.py
A shell/ext-py/bitarray-2.3.0/bitarray/util.py
A shell/ext-py/bitarray-2.3.0/bitarray/util.pyi
A shell/ext-py/bitarray-2.3.0/contributing.md
R shell/ext-py/bitarray-2.3.0/setup.py
A shell/ext-py/bitarray-2.3.0/update_doc.py
R shell/ext-py/prettytable-0.7.2/CHANGELOG
R shell/ext-py/prettytable-0.7.2/COPYING
R shell/ext-py/prettytable-0.7.2/MANIFEST.in
R shell/ext-py/prettytable-0.7.2/PKG-INFO
R shell/ext-py/prettytable-0.7.2/README
R shell/ext-py/prettytable-0.7.2/prettytable.py
R shell/ext-py/prettytable-0.7.2/setup.cfg
R shell/ext-py/prettytable-0.7.2/setup.py
D shell/ext-py/thrift_sasl-0.4.2/CHANGELOG.md
D shell/ext-py/thrift_sasl-0.4.2/README.md
A shell/ext-py/thrift_sasl-0.4.3/CHANGELOG.md
R shell/ext-py/thrift_sasl-0.4.3/LICENSE
A shell/ext-py/thrift_sasl-0.4.3/README.md
R shell/ext-py/thrift_sasl-0.4.3/setup.py
R shell/ext-py/thrift_sasl-0.4.3/thrift_sasl/__init__.py
M shell/packaging/requirements.txt
49 files changed, 13,502 insertions(+), 8,359 deletions(-)


  git pull ssh://gerrit.cloudera.org:29418/Impala-ASF refs/changes/26/17826/3
-- 
To view, visit http://gerrit.cloudera.org:8080/17826
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I378404e2407396d4de3bb0eea4d49a9c5bb4e46a
Gerrit-Change-Number: 17826
Gerrit-PatchSet: 3
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Attila Jeges <at...@cloudera.com>
Gerrit-Reviewer: Bikramjeet Vig <bi...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Joe McDonnell <jo...@cloudera.com>

[Impala-ASF-CR] IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi

Posted by "Impala Public Jenkins (Code Review)" <ge...@cloudera.org>.
Impala Public Jenkins has posted comments on this change. ( http://gerrit.cloudera.org:8080/17826 )

Change subject: IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi
......................................................................


Patch Set 4: Verified+1


-- 
To view, visit http://gerrit.cloudera.org:8080/17826
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I378404e2407396d4de3bb0eea4d49a9c5bb4e46a
Gerrit-Change-Number: 17826
Gerrit-PatchSet: 4
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Attila Jeges <at...@cloudera.com>
Gerrit-Reviewer: Bikramjeet Vig <bi...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Joe McDonnell <jo...@cloudera.com>
Gerrit-Comment-Date: Tue, 28 Sep 2021 04:55:55 +0000
Gerrit-HasComments: No

[Impala-ASF-CR] IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi

Posted by "Impala Public Jenkins (Code Review)" <ge...@cloudera.org>.
Impala Public Jenkins has posted comments on this change. ( http://gerrit.cloudera.org:8080/17826 )

Change subject: IMPALA-10784 (part 3): Prepare to publish impala-shell on PyPi
......................................................................


Patch Set 2:

Build Failed 

https://jenkins.impala.io/job/gerrit-code-review-checks/9430/ : Initial code review checks failed. See linked job for details on the failure.


-- 
To view, visit http://gerrit.cloudera.org:8080/17826
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings

Gerrit-Project: Impala-ASF
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I378404e2407396d4de3bb0eea4d49a9c5bb4e46a
Gerrit-Change-Number: 17826
Gerrit-PatchSet: 2
Gerrit-Owner: Wenzhe Zhou <wz...@cloudera.com>
Gerrit-Reviewer: Attila Jeges <at...@cloudera.com>
Gerrit-Reviewer: Bikramjeet Vig <bi...@cloudera.com>
Gerrit-Reviewer: Impala Public Jenkins <im...@cloudera.com>
Gerrit-Reviewer: Joe McDonnell <jo...@cloudera.com>
Gerrit-Comment-Date: Tue, 07 Sep 2021 18:34:12 +0000
Gerrit-HasComments: No