Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion prestodb/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ def execute(self):
while (
not self._finished and not self._cancelled
):
self._result._rows += self.fetch()
self._result._rows.extend(self.fetch())
return self._result

def fetch(self):
Expand Down