Skip to content
New issue

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

doc: Status Page that shows us which SQL functions are supported and which are missing #8790

Closed
CAJan93 opened this issue Mar 27, 2023 · 2 comments

Comments

@CAJan93
Copy link
Contributor

CAJan93 commented Mar 27, 2023

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:

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'
@github-actions github-actions bot added this to the release-0.19 milestone Mar 27, 2023
@xxchan
Copy link
Member

xxchan commented Mar 27, 2023

Similar idea discussed before #3919
I think the idea is generally OK, but not on the schedule. Are you willing to implement it?

@xiangjinwu
Copy link
Contributor

Updated the tracking page of builtin functions #112

@xxchan xxchan closed this as completed Mar 29, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants