vscode-sqltools
vscode-sqltools copied to clipboard
Database object names should maintiain case sensitivity
PgSql Table Name is defined as ProperCase, when the query is executed it is converting everything to lowercase and reports an error that the table doesnt exist
To Reproduce Steps to reproduce the behavior:
- Create a Pgsql connection
- Expand the database to get to the table
- Make sure Pgsql has at least one table with ProperCase
- In the query editor type SELECT * FROM <TableName>
- Click <Run on active connection> from query editor
Expected behavior Should get list of table row values in the output window
Screenshots If applicable, add screenshots to help explain your problem.
errors out that "relation 'tablename' does not exist"
Desktop:
- SQLTools Version [0.23]
- VSCode Version: [1.52.1]
- OS: [Windows]
- Driver:
- [ ] PostgreSQL
- Database version: [PostgreSQL 13]
Additional context If selected from an all lowercase named table this feature works fine
I'm encountering this issue as well. Any update?