Closed scossin closed 3 years ago
Yes that could indeed be the case thanks, this ; is needed for SQLRender.
it will not be an issue for any other DBs
Thanks unfortunately we cannot test the package on Oracle ourselves.
We will close them when they are in master
Describe the bug We encountered a SQLSyntaxErrorException: ORA-00905: missing keyword error with the following queries: 430, 630, 730, 830, 1830, 2130. This error occurs because the template query is not correctly translated to Oracle DBMS.
To Reproduce
The SQL returned still contains "into @scratchDatabaseSchema@schemaDelim@tempAchillesPrefix_430" which causes the error.
By adding a ";" at the end of the SQL query template, it solved the problem. The "into ..." line was replaced by a "CREATE TABLE @scratchDatabaseSchema@schemaDelim@tempAchillesPrefix_430"
I don't know if fixing this bug for Oracle could cause another bug for other DBMS.