I need to execute this query:
Select * from my_schema.table_within_schema
Unfortunately groogy.sql.SQL is removing my_schema and executing a query without schema information:
Select * from table_within_schema
I wonder if it is possible to force groovy.sql.Sql to keep a schema name in the query.
Groovy: 1.7, Db: I use a jdbc driver that requires a schema name specified.