-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: return list of dictionaries for execute streaming sql #1003
Conversation
@@ -190,6 +190,19 @@ def one_or_none(self): | |||
except StopIteration: | |||
return answer | |||
|
|||
def fetch_as_dictionary_list(self): | |||
rows = [] | |||
for row in self: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What happens if rows are not fully processed when this method is called ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There will be a delay in returning the result in those cases but always the full result will be returned
No description provided.