Using a `.` in a table name will cause the table name to be quoted.
For example:
from sqlalchemy import table, column
t = table('myschema.mytable', column('id'))
Outputs:
SELECT "myschema.mytable".id
FROM "myschema.mytable"
This fails in Oracle because the table name within the quotes is not in all caps.
How can I remove the quotes and instead have it render:
FROM myschema.mytable
Thanks and best regards,
Matthew