Describe the bug
Add below tests, quoting the table name in the select statement is parsed correctly in the other dialects, but not for Athena or Transact SQL
// athena.spec.js
it('should support double quoted table mentions in selects', () => {
const sql = `SELECT
"my_table"."my_column"
FROM
"my_table"`
expect(getParsedSql(sql)).to.be.equal('SELECT `my_table`.`my_column` FROM `my_table`')
})
// transactsql.spec.ts
it('should support double quoted table mentions in selects', () => {
const sql = `SELECT
"my_table"."my_column"
FROM
"my_table"`
expect(getParsedSql(sql)).to.be.equal('SELECT [my_table].[my_column] FROM [my_table]')
})
Describe the bug Add below tests, quoting the table name in the select statement is parsed correctly in the other dialects, but not for Athena or Transact SQL
Database Engine Athena & Transact SQL