We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Using execute() with stream_results enabled gives exception.
stream_results
To Reproduce Test like this
def test_with_stream_results(self): rv = self.session.execute(text("SELECT * FROM system.numbers LIMIT 1"), execution_options={"stream_results": True}) self.assertEqual(len(rv.fetchall()), 1)
Expected behavior Test should pass.
Versions
The text was updated successfully, but these errors were encountered:
fix for xzkostyan#286
b8b0619
Merge pull request #287 from akurdyukov/stream_results
e129569
fix for #286
Fix flake8 #286
76d93b7
Successfully merging a pull request may close this issue.
Describe the bug
Using execute() with
stream_results
enabled gives exception.To Reproduce
Test like this
Expected behavior
Test should pass.
Versions
The text was updated successfully, but these errors were encountered: