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
a query like
SELECT round(i, 2) FROM generate_series(1,10) i
will result in this normalized query:
SELECT round(i, ?) FROM generate_series(?,?)i;
pg_qualstats doesn't track anything for the round(i, ?) part, leading to errors when trying to denormalize this query.
round(i, ?)
A fallback to the non normalized version (pg_qualstats.example_query(oid)) if available shoud be done.
If no fallback is possible, error shoud be handled (this is at least not the case in the wizard index check part).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
a query like
will result in this normalized query:
pg_qualstats doesn't track anything for the
round(i, ?)
part, leading to errors when trying to denormalize this query.A fallback to the non normalized version (pg_qualstats.example_query(oid)) if available shoud be done.
If no fallback is possible, error shoud be handled (this is at least not the case in the wizard index check part).
The text was updated successfully, but these errors were encountered: