HHH-4568 Sybase - Test BatchTest fails due to 'unexpected row count from update'

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@19819 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Strong Liu 2010-06-24 09:50:07 +00:00
parent d8a70268b8
commit 505e7eeacb
2 changed files with 3 additions and 3 deletions

View File

@ -912,7 +912,7 @@
<properties>
<db.dialect>org.hibernate.dialect.SybaseASE15Dialect</db.dialect>
<jdbc.driver>com.sybase.jdbc3.jdbc.SybDriver</jdbc.driver>
<jdbc.url>jdbc:sybase:Tds:vmg07.mw.lab.eng.bos.redhat.com:5000/hibbrtru</jdbc.url>
<jdbc.url>jdbc:sybase:Tds:vmg07.mw.lab.eng.bos.redhat.com:5000/hibbrtru?DYNAMIC_PREPARE=true</jdbc.url>
<jdbc.user>hibbrtru</jdbc.user>
<jdbc.pass>hibbrtru</jdbc.pass>
<jdbc.isolation />

View File

@ -13,10 +13,10 @@
<generator class="increment"/>
</id>
<property name="x">
<column name="xval" not-null="true" length="4" unique-key="xy"/>
<column name="xval" not-null="true" precision="25" scale="20" unique-key="xy"/>
</property>
<property name="y">
<column name="yval" not-null="true" length="4" unique-key="xy"/>
<column name="yval" not-null="true" precision="25" scale="20" unique-key="xy"/>
</property>
<property name="description"/>
</class>