8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
We made some changes to SHOW TABLES/SHOW ALL TABLES, and it seems those have caused the schema search path to no longer be correctly respected.
D create temporary view v1 as select 42; D show tables; ┌─────────┐ │ name │ │ varchar │ ├─────────┤ │ 0 rows │ └─────────┘ D show all tables; ┌──────────┬─────────┬────────────┬──────────────┬──────────────┬───────────┐ │ database │ schema │ table_name │ column_names │ column_types │ temporary │ │ varchar │ varchar │ varchar │ varchar[] │ varchar[] │ boolean │ ├───────────────────────────────────────────────────────────────────────────┤ │ 0 rows │ └───────────────────────────────────────────────────────────────────────────┘
MacOS
latest
CLI
Mark Raasveldt
DuckDB Labs
master
The text was updated successfully, but these errors were encountered:
Fix duckdb#7663 - add in_search_path function, and correctly show tem…
9cfe05d
…porary tables and others in SHOW TABLES and SHOW ALL TABLES
Merge pull request #7680 from Mytherin/showtables
9e89e66
Fix #7663 - add in_search_path function, correctly show temporary views in SHOW TABLES, and show views in SHOW ALL TABLES
Successfully merging a pull request may close this issue.
What happens?
We made some changes to SHOW TABLES/SHOW ALL TABLES, and it seems those have caused the schema search path to no longer be correctly respected.
To Reproduce
OS:
MacOS
DuckDB Version:
latest
DuckDB Client:
CLI
Full Name:
Mark Raasveldt
Affiliation:
DuckDB Labs
Have you tried this on the latest
master
branch?Have you tried the steps to reproduce? Do they include all relevant data and configuration? Does the issue you report still appear there?
The text was updated successfully, but these errors were encountered: