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 c008d9b commit 666d934Copy full SHA for 666d934
trino/client.py
@@ -650,8 +650,8 @@ def __init__(
650
def columns(self):
651
if self.query_id:
652
while not self._columns and not self.finished and not self.cancelled:
653
- # Columns don't return immediate after query is summited.
654
- # Continue fetching data until columns are available and push fetched rows into buffer.
+ # Columns are not returned immediately after query is submitted.
+ # Continue fetching data until columns information is available and push fetched rows into buffer.
655
self._result._rows += self.fetch()
656
return self._columns
657
0 commit comments