Re: [PR] IGNITE-23967 Python DB API Fix fetching long result sets [ignite-3]

2025-01-21 Thread via GitHub
isapego merged PR #5082: URL: https://github.com/apache/ignite-3/pull/5082 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ign

Re: [PR] IGNITE-23967 Python DB API Fix fetching long result sets [ignite-3]

2025-01-21 Thread via GitHub
isapego commented on code in PR #5082: URL: https://github.com/apache/ignite-3/pull/5082#discussion_r1923315539 ## modules/platforms/python/cpp_module/utils.cpp: ## @@ -47,6 +49,12 @@ bool check_errors(ignite::diagnosable& diag) { break; case SQL_ERROR: +

Re: [PR] IGNITE-23967 Python DB API Fix fetching long result sets [ignite-3]

2025-01-20 Thread via GitHub
ptupitsyn commented on code in PR #5082: URL: https://github.com/apache/ignite-3/pull/5082#discussion_r1923148065 ## modules/platforms/python/cpp_module/utils.cpp: ## @@ -47,6 +49,12 @@ bool check_errors(ignite::diagnosable& diag) { break; case SQL_ERROR:

[PR] IGNITE-23967 Python DB API Fix fetching long result sets [ignite-3]

2025-01-20 Thread via GitHub
isapego opened a new pull request, #5082: URL: https://github.com/apache/ignite-3/pull/5082 - Added tests; - Fixed a bug that prevented the exception during fetch to be reported; - Fixed argument ordering (`timeout` and `page_size` were mixed up); - Fixed last page indicator reading.