-
Notifications
You must be signed in to change notification settings - Fork 7
SHOW ALL TABLES fails after MSSQL attach #86
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or requestquestionFurther information is requestedFurther information is requested
Description
Description
After attaching a SQL Server database using the mssql extension, basic queries work correctly, but SHOW ALL TABLES fails.
Environment
- OS: Windows
- DuckDB version: 1.5
- SQL Server: 2022
- Extension: mssql (hugr-lab)
Steps to Reproduce
-
Load the extension:
LOAD mssql; -
Attach a SQL Server database (using either SECRET or connection string):
ATTACH 'connection_string' AS mssql_db (TYPE MSSQL); -
Run a query:
SELECT * FROM mssql_db.some_table;
-- Works correctly -
Run:
SHOW ALL TABLES;
Expected Behavior
SHOW ALL TABLES should list tables from all attached databases, including MSSQL.
Actual Behavior
The command hangs with no error.
Notes
- Direct SELECT queries on MSSQL tables work fine.
- The issue seems specific to metadata listing.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestquestionFurther information is requestedFurther information is requested