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
Driver handles incorrectly empty paging responses Driver stops paging the cursor if response is empty. Criteria to stop paging is no cursor returned.
Check out and build SQL plugin from branch dev-pagination-v2_revE @ 163093cb76 Run query
select * from <table> limit 5, 5;
with page size (fetch_size) = 2. The tricky part is to have fetch_size less than offset.
fetch_size
offset
Driver returns an empty result set.
Driver should scroll the cursor until received response has no cursor.
1.2.0.0 from maven
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What is the bug?
Driver handles incorrectly empty paging responses
Driver stops paging the cursor if response is empty. Criteria to stop paging is no cursor returned.
How can one reproduce the bug?
Check out and build SQL plugin from branch dev-pagination-v2_revE @ 163093cb76
Run query
with page size (
fetch_size
) = 2. The tricky part is to havefetch_size
less thanoffset
.Driver returns an empty result set.
What is the expected behavior?
Driver should scroll the cursor until received response has no cursor.
What is your host/environment?
1.2.0.0 from maven
The text was updated successfully, but these errors were encountered: