HHH-4732 quote column name as it is a keyword on teradata
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19076 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
4404b78be8
commit
6094bd00c4
|
@ -12,7 +12,7 @@
|
||||||
<class name="User" table="T_USER" dynamic-update="true">
|
<class name="User" table="T_USER" dynamic-update="true">
|
||||||
<id name="userName"/>
|
<id name="userName"/>
|
||||||
<timestamp name="lastModified"/>
|
<timestamp name="lastModified"/>
|
||||||
<property name="password" not-null="true" optimistic-lock="false"/>
|
<property name="password" column="`password`" not-null="true" optimistic-lock="false"/>
|
||||||
<component name="person">
|
<component name="person">
|
||||||
<property name="name" update="false" not-null="true"/>
|
<property name="name" update="false" not-null="true"/>
|
||||||
<property name="dob" update="false" not-null="true"/>
|
<property name="dob" update="false" not-null="true"/>
|
||||||
|
|
Loading…
Reference in New Issue