-
Notifications
You must be signed in to change notification settings - Fork 75
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
chore: set schema and search_path #273
Conversation
Signed-off-by: usamoi <[email protected]>
Signed-off-by: usamoi <[email protected]>
Signed-off-by: usamoi <[email protected]>
Signed-off-by: usamoi <[email protected]>
Signed-off-by: usamoi <[email protected]>
Is the |
It seems that this PR would fix pgvecto.rs target schema to Apart from this, I see there is a way of Could we set location at create script as:
And use a pg function |
|
Signed-off-by: usamoi <[email protected]>
I think it's not how |
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.
This PR would lock pgvecto.rs operators installed at vectors
schema.
Affect
CREATE EXTENSION vectors WITH SCHEMA xxx
is forbidden from now.
Instead, user need to alter search_path=vectors
to enable global access of operators and search_path=vectors, xxx
to access other schema optional.
cc @VoVAllen
closes #270