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 supported_functions.md with the functions we support and that we can update automatically.
supported_functions.md
We can pull the PSQL functions from the Postgres docs (see e.g. here) and then just check if a function is mentioned in one of our *.slt.* test files.
*.slt.*
Think this would be nice to have and it would aid our dev process.
Or to get all PSQL functions:
SELECT n.nspname, p.proname FROM pg_catalog.pg_namespace n JOIN pg_catalog.pg_proc p ON p.pronamespace = n.oid WHERE p.prokind = 'f'
The text was updated successfully, but these errors were encountered:
Similar idea discussed before #3919 I think the idea is generally OK, but not on the schedule. Are you willing to implement it?
Sorry, something went wrong.
Updated the tracking page of builtin functions #112
No branches or pull requests
Describe the solution you'd like
A
supported_functions.md
with the functions we support and that we can update automatically.We can pull the PSQL functions from the Postgres docs (see e.g. here) and then just check if a function is mentioned in one of our
*.slt.*
test files.Think this would be nice to have and it would aid our dev process.
Or to get all PSQL functions:
The text was updated successfully, but these errors were encountered: