Author: stliu
Date: 2010-09-08 00:49:28 -0400 (Wed, 08 Sep 2010)
New Revision: 20318
Modified:
annotations/branches/v3_4_0_GA_CP/src/test/java/org/hibernate/test/annotations/entity/Java5FeaturesTest.java
Log:
JBPAPP-4731 HHH-5413 null values for columns mapped as "boolean" cause exception
when saving entity with Sybase jdbc4
Modified:
annotations/branches/v3_4_0_GA_CP/src/test/java/org/hibernate/test/annotations/entity/Java5FeaturesTest.java
===================================================================
---
annotations/branches/v3_4_0_GA_CP/src/test/java/org/hibernate/test/annotations/entity/Java5FeaturesTest.java 2010-09-08
03:06:25 UTC (rev 20317)
+++
annotations/branches/v3_4_0_GA_CP/src/test/java/org/hibernate/test/annotations/entity/Java5FeaturesTest.java 2010-09-08
04:49:28 UTC (rev 20318)
@@ -3,6 +3,7 @@
import org.hibernate.Session;
import org.hibernate.Transaction;
+import org.hibernate.junit.FailureExpected;
import org.hibernate.test.annotations.TestCase;
/**
@@ -29,7 +30,7 @@
s.close();
}
-
+ @FailureExpected(jiraKey="JBPAPP-4731")
public void testEnums() throws Exception {
Session s;
Transaction tx;
@@ -86,7 +87,7 @@
tx.commit();
s.close();
}
-
+ @FailureExpected(jiraKey="JBPAPP-4731")
public void testAutoboxing() throws Exception {
Session s;
Transaction tx;
Show replies by date