embucket-labs
embucket-labs copied to clipboard
engine: `SELECT`, `WHERE`, etc - can't find uppercase `Ident`'s
- Any statements only work with lowercased Identifiers for tables (probably, schemas, databases, fields, etc)
- This doesn't work:
CREATE OR REPLACE TABLE mytable_1 (amount NUMBER);
SELECT table_name
FROM information_schema.tables
WHERE table_name = 'MYTABLE_1';
- This does work:
CREATE OR REPLACE TABLE mytable_1 (amount NUMBER);
SELECT table_name
FROM information_schema.tables
WHERE table_name = 'mytable_1';