HHH-6704 POSTGRESQL test failures

This commit is contained in:
Strong Liu 2011-10-01 02:33:46 +08:00
parent 56ce194a29
commit 8f520e1126
1 changed files with 3 additions and 0 deletions

View File

@ -8,12 +8,14 @@ import java.util.List;
import org.hibernate.HibernateException; import org.hibernate.HibernateException;
import org.hibernate.Session; import org.hibernate.Session;
import org.hibernate.dialect.Dialect; import org.hibernate.dialect.Dialect;
import org.hibernate.dialect.PostgreSQLDialect;
import org.hibernate.id.PostInsertIdentifierGenerator; import org.hibernate.id.PostInsertIdentifierGenerator;
import org.junit.Test; import org.junit.Test;
import org.hibernate.testing.DialectCheck; import org.hibernate.testing.DialectCheck;
import org.hibernate.testing.RequiresDialectFeature; import org.hibernate.testing.RequiresDialectFeature;
import org.hibernate.testing.SkipForDialect;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotSame; import static org.junit.Assert.assertNotSame;
@ -38,6 +40,7 @@ public class CustomSQLTest extends LegacyTestCase {
@Test @Test
@RequiresDialectFeature( NonIdentityGeneratorChecker.class ) @RequiresDialectFeature( NonIdentityGeneratorChecker.class )
@SkipForDialect( value = PostgreSQLDialect.class, jiraKey = "HHH-6704")
@SuppressWarnings( {"UnnecessaryBoxing"}) @SuppressWarnings( {"UnnecessaryBoxing"})
public void testInsert() throws HibernateException, SQLException { public void testInsert() throws HibernateException, SQLException {
Session s = openSession(); Session s = openSession();