We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
SET search_path = 'foo'; should then make it so that SELECT * FROM bar returns data from foo.bar rather than public.bar.
SET search_path = 'foo';
SELECT * FROM bar
foo.bar
public.bar
Note that search_path is a comma-separated list, and also impacts lookup of functions, etc.
The text was updated successfully, but these errors were encountered:
@Tishj can you investigate what this looks like at the DuckDB level w.r.t. replacement scans
Sorry, something went wrong.
#33
mkaruza
No branches or pull requests
SET search_path = 'foo';
should then make it so thatSELECT * FROM bar
returns data fromfoo.bar
rather thanpublic.bar
.Note that search_path is a comma-separated list, and also impacts lookup of functions, etc.
The text was updated successfully, but these errors were encountered: