HHH-6867 test data overflow causes org.hibernate.test.cut.CompositeUserTypeTest.testCustomColumnReadAndWrite fails on DB2

This commit is contained in:
Strong Liu 2011-12-01 17:05:07 +08:00
parent 7fca6f7567
commit f9e947035e
1 changed files with 2 additions and 1 deletions

View File

@ -30,6 +30,7 @@ import org.junit.Test;
import org.hibernate.Session; import org.hibernate.Session;
import org.hibernate.criterion.Restrictions; import org.hibernate.criterion.Restrictions;
import org.hibernate.dialect.DB2Dialect;
import org.hibernate.dialect.HSQLDialect; import org.hibernate.dialect.HSQLDialect;
import org.hibernate.dialect.SybaseASE15Dialect; import org.hibernate.dialect.SybaseASE15Dialect;
import org.hibernate.testing.SkipForDialect; import org.hibernate.testing.SkipForDialect;
@ -77,7 +78,7 @@ public class CompositeUserTypeTest extends BaseCoreFunctionalTestCase {
} }
@Test @Test
@SkipForDialect( value = SybaseASE15Dialect.class, jiraKey = "HHH-6788") @SkipForDialect( value = {SybaseASE15Dialect.class, DB2Dialect.class}, jiraKey = "HHH-6788,HHH-6867")
public void testCustomColumnReadAndWrite() { public void testCustomColumnReadAndWrite() {
Session s = openSession(); Session s = openSession();
org.hibernate.Transaction t = s.beginTransaction(); org.hibernate.Transaction t = s.beginTransaction();