Hi,
When using JPA I am having problems when calling entities "User" and other things that are reserved keywords in postgresql. I can fix this for that entity with: @Table(name = "`user`")
BUT then I need to escape column names for all referencing entities, and finally it gets simply impossible when I need to reference the User entity in collection of embeddables. To me it seems like the postgresql dialect should take care of escaping all reserved keywords? Is this a known issue, something worth mentioning in JIRA or something done by design?
Thanks, Piotr
|