Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Taal2012-01-26 19:30:14 +0000
committerMartin Taal2012-01-26 19:30:14 +0000
commit44d00285cefe870985ea0bf2d546c44617ae7c90 (patch)
treebc82e8d65b18e04ee78cf7a44ceecad33d5e1a33 /plugins/org.eclipse.emf.cdo.server.hibernate/mappings
parente39563c397763dbf436128cb392abf4306eb9c52 (diff)
downloadcdo-44d00285cefe870985ea0bf2d546c44617ae7c90.tar.gz
cdo-44d00285cefe870985ea0bf2d546c44617ae7c90.tar.xz
cdo-44d00285cefe870985ea0bf2d546c44617ae7c90.zip
Fixes issue [352882] - [Hibernate] resource.hbm.xml: the blob column name for the cdo_lob table causes MySQL error
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.server.hibernate/mappings')
-rw-r--r--plugins/org.eclipse.emf.cdo.server.hibernate/mappings/resource.hbm.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.emf.cdo.server.hibernate/mappings/resource.hbm.xml b/plugins/org.eclipse.emf.cdo.server.hibernate/mappings/resource.hbm.xml
index b69301c613..9d39ff5da5 100644
--- a/plugins/org.eclipse.emf.cdo.server.hibernate/mappings/resource.hbm.xml
+++ b/plugins/org.eclipse.emf.cdo.server.hibernate/mappings/resource.hbm.xml
@@ -73,10 +73,10 @@
<class name="org.eclipse.emf.cdo.server.internal.hibernate.HibernateStoreLob" table="`cdo_lob`" lazy="false">
<id name="id"/>
<property name="clob">
- <column name="`clob`"/>
+ <column name="`c_lob`"/>
</property>
<property name="blob">
- <column name="`blob`"/>
+ <column name="`b_lob`"/>
</property>
<property name="size">
<column name="`size`"/>

Back to the top