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
Following sequence results in incorrect (limited) data being returned
> select name from aws_s3_bucket; > .cache clear > select name from aws_s3_bucket limit 5; > select name from aws_s3_bucket;
this results in the unlimited query returning limited data
This is caused by the fact that the result key does not include the limit - therefore multiple index items referred to the same result key
The text was updated successfully, but these errors were encountered:
kaidaguerre
No branches or pull requests
Following sequence results in incorrect (limited) data being returned
this results in the unlimited query returning limited data
This is caused by the fact that the result key does not include the limit - therefore multiple index items referred to the same result key
The text was updated successfully, but these errors were encountered: