lidavidm commented on code in PR #2922:
URL: https://github.com/apache/arrow-adbc/pull/2922#discussion_r2135160208
##########
python/adbc_driver_manager/adbc_driver_manager/dbapi.py:
##########
@@ -669,9 +674,7 @@ def close(self):
if self._closed:
return
- if self._results is not None:
- self._results.close()
- self._results = None
+ self._clear()
Review Comment:
Er, no, because this object can be reused and _clear is used below, so the
only thing it should do is free any allocated array stream
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]