-
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
builtins: add unimplemented errors for full text search builtins #54573
Conversation
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! 0 of 0 LGTMs obtained (waiting on @arulajmani and @otan)
pkg/sql/sem/builtins/builtins.go, line 2867 at r1 (raw file):
"json_to_tsvector": makeBuiltin(tree.FunctionProperties{UnsupportedWithIssue: 7821, Category: categoryFullTextSearch}), "jsonb_to_tsvector": makeBuiltin(tree.FunctionProperties{UnsupportedWithIssue: 7821, Category: categoryFullTextSearch}), "phraseto_tsquery": makeBuiltin(tree.FunctionProperties{UnsupportedWithIssue: 7821, Category: categoryFullTextSearch}),
This list doesn't seem to include all the functions from https://www.postgresql.org/docs/12/functions-textsearch.html. Is that intentional?
pkg/sql/sem/builtins/builtins.go, line 2867 at r1 (raw file): Previously, arulajmani (Arul Ajmani) wrote…
ok, missed a few with my pgproc query. fixed now! |
Release note: None
301b728
to
b87de7c
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.
Reviewable status: complete! 1 of 0 LGTMs obtained (waiting on @arulajmani)
tftr! bors r=arulajmani |
Build failed (retrying...): |
Build succeeded: |
Refs: #7821, #51424
Release note: None