-
Notifications
You must be signed in to change notification settings - Fork 11.3k
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
Ability to define a multi-schema search_path for PostgreSQL lost after changes in #8394 #8639
Comments
We're open to PRs. |
Hi, may we know about status of this issue please? |
Since it doesn't seem like this will get official support, I came up with a fairly simple workaround. I'm using 5.3.
The |
@denaje Thanks, that helped a lot. Was using Heroku Connect and it requires multi-search path. This helped a lot! |
Up until the changes from #8394 were made, it was possible to define a multi-schema search path when defining a database configuration (in
database.php
):This translated in the following query that was executed immediately after the connection was established:
SET search_path TO schema1,schema2,schema3;
After the changes in #8394, this now translates to the following SQL query:
which basically breaks the previous functionality.
Is it possible to get multi-schema support back?
A couple of potential solutions that I see:
The text was updated successfully, but these errors were encountered: