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

Support schema (namespace) of functions #12422

Open
Tracked by #7405
xxchan opened this issue Sep 19, 2023 · 1 comment
Open
Tracked by #7405

Support schema (namespace) of functions #12422

xxchan opened this issue Sep 19, 2023 · 1 comment

Comments

@xxchan
Copy link
Member

xxchan commented Sep 19, 2023

Since we are developing UDFs, this should be considered.

e.g., in PG

xxchan@/tmp:postgres> select * from _pg_expandarray(Array[1,2,3]);
function _pg_expandarray(integer[]) does not exist
LINE 1: select * from _pg_expandarray(Array[1,2,3])
                      ^
HINT:  No function matches the given name and argument types. You might need to add explicit type casts.
Time: 0.024s
xxchan@/tmp:postgres> set search_path = information_schema;
SET
Time: 0.001s
xxchan@/tmp:postgres> select * from _pg_expandarray(Array[1,2,3]);
+---+---+
| x | n |
|---+---|
| 1 | 1 |
| 2 | 2 |
| 3 | 3 |
+---+---+
@github-actions github-actions bot added this to the release-1.3 milestone Sep 19, 2023
@xxchan xxchan modified the milestones: release-1.3, release-1.4 Oct 10, 2023
@xxchan xxchan self-assigned this Oct 10, 2023
@xxchan xxchan modified the milestones: release-1.4, future-release-1.6 Nov 7, 2023
@xxchan xxchan modified the milestones: release-1.6, release-1.7 Jan 9, 2024
@xzhseh xzhseh self-assigned this Jan 22, 2024
@xzhseh xzhseh modified the milestones: release-1.7, release-1.8 Mar 6, 2024
Copy link
Contributor

This issue has been open for 60 days with no activity. Could you please update the status? Feel free to continue discussion or close as not planned.

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

2 participants