We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48ca73c commit 8ee1a36Copy full SHA for 8ee1a36
mssql_python/cursor.py
@@ -1491,7 +1491,8 @@ def _buffer_intermediate_results(self):
1491
# If we can't advance further, stop
1492
break
1493
1494
- except Exception:
+ except Exception as e:
1495
+ log('warning', "Exception occurred during `_buffer_intermediate_results` %s", e)
1496
# If anything goes wrong during buffering, continue with current state
1497
# This ensures we don't break existing functionality
1498
pass
0 commit comments