-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
sql: make pg_description aware of builtin function descriptions #95294
Conversation
55e4d6c
to
93f9b44
Compare
2fb14ab
to
6977d89
Compare
6977d89
to
31e18d1
Compare
5eb76f8
to
8ce5a10
Compare
Release note (bug fix): The `prokind` column of `pg_catalog.pg_proc` is now populated properly.
This also extends the completion rules to properly handle functions in multiple namespaces. Release note (bug fix): `pg_catalog.pg_description` and `pg_catalog.obj_description()` are now able to retrieve the descriptive help for built-in functions.
8ce5a10
to
bd2953b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm!
Reviewed 1 of 3 files at r1, 10 of 10 files at r2, all commit messages.
Reviewable status: complete! 0 of 0 LGTMs obtained (waiting on @msirek)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: complete! 1 of 0 LGTMs obtained (waiting on @knz)
Thanks to both! bors r=rafiss,msirek |
Build succeeded: |
Epic: CRDB-23454
Fixes #95292.
Needed for #88061.
First commit from #95289.
This also extends the completion rules to properly handle
functions in multiple namespaces.
Release note (bug fix):
pg_catalog.pg_description
andpg_catalog.obj_description()
are now able to retrieve the descriptive help for built-in functions.