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
For large tables including the count can have very large performance implications:
SELECT COUNT(id) FROM something; -- Runtime: 5507.556ms SELECT * FROM something LIMIT 50 OFFSET 0; -- Runtime: 0.193 ms
It would be great to be able to send in an option to disable the count entirely.
The text was updated successfully, but these errors were encountered:
Hey @ksylvest, I agree that this would make sense as an option. Is this something you'd like to try adding?
Sorry, something went wrong.
@cantino Yeah, I can take a look.
No branches or pull requests
For large tables including the count can have very large performance implications:
It would be great to be able to send in an option to disable the count entirely.
The text was updated successfully, but these errors were encountered: