Bump Impyla version to 0.21a1

Change-Id: I297a2a34f3e688555ce8572b6c7fffbd34423f2d
Reviewed-on: http://gerrit.cloudera.org:8080/21286
Reviewed-by: Csaba Ringhofer <csringhofer@cloudera.com>
Tested-by: Csaba Ringhofer <csringhofer@cloudera.com>
This commit is contained in:
Csaba Ringhofer
2024-04-10 19:37:09 +02:00
parent 59616d7bd1
commit 6fc36b3e8e
2 changed files with 3 additions and 2 deletions

View File

@@ -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)

View File

@@ -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")