Skip to content
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

Add Support for SQL Server SYNONYMs for Tables and Views #24206

Open
daveedgn opened this issue Nov 20, 2024 · 1 comment · May be fixed by #25440
Open

Add Support for SQL Server SYNONYMs for Tables and Views #24206

daveedgn opened this issue Nov 20, 2024 · 1 comment · May be fixed by #25440

Comments

@daveedgn
Copy link

Similar to the Oracle connector's support for SYNONYMs, please add support for the SQL Server connector.

Trino does not have visibility into all database objects in a SQL Server catalog. If we used a pass-thru query, we would be able to see it!

This should be included in metadata queries as well, so that database clients (e.g. DBeaver) connecting to Trino are aware of the "tables".

E.g.

-- Table not found
select * from foobar.dbo.enum_ABC;

-- Works
select * from table(foobar.system.query('SELECT * from enum_ABC'));

-- No results
select * from table(foobar.system.query('
	SELECT *
	FROM INFORMATION_SCHEMA.TABLES
	WHERE TABLE_NAME = ''enum_ABC''
'));

-- We are able to find it via the database's `sys.synonyms` table
select * from table(foobar.system.query('SELECT * from sys.synonyms'));

For our purposes, we only care about viewing synonyms for TABLEs, VIEWs (and MATERIALIZED VIEWs).

@ebyhr ebyhr added the good first issue Good for newcomers label Nov 20, 2024
@rahulbiswas876
Copy link

rahulbiswas876 commented Dec 6, 2024

@ebyhr please assign it to me..

I am new to the project.. I am done with code setup locally.
Starting point reference for the bug would be helpful

kirkhansen added a commit to kirkhansen/trino that referenced this issue Mar 27, 2025
Adds a configuration option to allow users to opt-in to having Trino be
able to interact with  SQL Server Synonym table types.
This closes trinodb#24206
@kirkhansen kirkhansen linked a pull request Mar 27, 2025 that will close this issue
kirkhansen added a commit to kirkhansen/trino that referenced this issue Mar 27, 2025
Adds a configuration option to allow users to opt-in to having Trino be
able to interact with  SQL Server Synonym table types.
This closes trinodb#24206
@ebyhr ebyhr removed the good first issue Good for newcomers label Mar 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging a pull request may close this issue.

3 participants