This is an automated email from the ASF dual-hosted git repository.
csringhofer pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git
The following commit(s) were added to refs/heads/master by this push:
new 6fc36b3e8 Bump Impyla version to 0.21a1
6fc36b3e8 is described below
commit 6fc36b3e8ee5a46baea6bbcae09f4081a6ef028c
Author: Csaba Ringhofer <[email protected]>
AuthorDate: Wed Apr 10 19:37:09 2024 +0200
Bump Impyla version to 0.21a1
Change-Id: I297a2a34f3e688555ce8572b6c7fffbd34423f2d
Reviewed-on: http://gerrit.cloudera.org:8080/21286
Reviewed-by: Csaba Ringhofer <[email protected]>
Tested-by: Csaba Ringhofer <[email protected]>
---
infra/python/deps/requirements.txt | 2 +-
tests/common/impala_connection.py | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/infra/python/deps/requirements.txt
b/infra/python/deps/requirements.txt
index ba6f862b9..e1b9ab409 100644
--- a/infra/python/deps/requirements.txt
+++ b/infra/python/deps/requirements.txt
@@ -27,7 +27,7 @@ hdfs == 2.0.2
docopt == 0.6.2
execnet == 1.4.0
apipkg == 1.4
-impyla == 0.18.0
+impyla == 0.21a1
bitarray == 2.3.0
pure-sasl == 0.6.2
# six == 1.14.0 (specified separately)
diff --git a/tests/common/impala_connection.py
b/tests/common/impala_connection.py
index 262eaaa35..0ebcfd1a8 100644
--- a/tests/common/impala_connection.py
+++ b/tests/common/impala_connection.py
@@ -367,7 +367,8 @@ class ImpylaHS2Connection(ImpalaConnection):
http_path=self.__http_path,
use_ssl=self.__use_ssl, **conn_kwargs)
# Get the default query options for the session before any modifications
are made.
- self.__cursor = self.__impyla_conn.cursor(convert_types=False)
+ self.__cursor = \
+ self.__impyla_conn.cursor(convert_types=False,
close_finished_queries=False)
self.__default_query_options = {}
if not self._is_hive:
self.__cursor.execute("set all")