Hi,
while testing 2.0-rc7-SNAPSHOT (trunk) on oracle, it seems that OracleDatabase.escapeDatabaseObject(objectName) escapes almost every objectName, although my names don’t include any non-word characters.
e.g.
I tried to create a sequence named sq_search_role, which results in:
- create sequence "sq_search_role";
The problem is: When inserting a entry using Hibernate, it is not able to query the sequence because Oracle (case-insensitive db) requires the double quotes around the name.
I created a Jira issue with a patch for this.
Regards,
Michael