You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by mp...@apache.org on 2023/12/01 00:43:11 UTC

(ignite-python-thin-client) branch IGNITE-20688 updated (b8bd903 -> f2efe1f)

This is an automated email from the ASF dual-hosted git repository.

mpetrov pushed a change to branch IGNITE-20688
in repository https://gitbox.apache.org/repos/asf/ignite-python-thin-client.git


 discard b8bd903  IGNITE-20688 WIP
     new f2efe1f  IGNITE-20688 WIP

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b8bd903)
            \
             N -- N -- N   refs/heads/IGNITE-20688 (f2efe1f)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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:
 pyignite/queries/query.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


(ignite-python-thin-client) 01/01: IGNITE-20688 WIP

Posted by mp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mpetrov pushed a commit to branch IGNITE-20688
in repository https://gitbox.apache.org/repos/asf/ignite-python-thin-client.git

commit f2efe1fccbcbcffaac9eaea6de042a4c169f1a7b
Author: Mikhail Petrov <pm...@gmail.com>
AuthorDate: Fri Dec 1 03:23:04 2023 +0300

    IGNITE-20688 WIP
---
 pyignite/queries/query.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pyignite/queries/query.py b/pyignite/queries/query.py
index 6ac16d8..d7cdbf9 100644
--- a/pyignite/queries/query.py
+++ b/pyignite/queries/query.py
@@ -169,7 +169,7 @@ class Query:
 
             result = self.__post_process_response(conn, response_struct, response)
             if result.status == 0:
-                result.value = response_struct.to_python(response)
+                result.value = response_struct.to_python(response, client=conn.client)
             self._on_query_finished(conn, result=result)
             return result
         except Exception as e:
@@ -207,7 +207,7 @@ class Query:
 
             result = self.__post_process_response(conn, response_struct, response)
             if result.status == 0:
-                result.value = await response_struct.to_python_async(response)
+                result.value = await response_struct.to_python_async(response, client=conn.client)
             self._on_query_finished(conn, result=result)
             return result
         except Exception as e: