HHH-7716 Skip this JoinedSubClassTest for CUBRID dialect as temp tables

are not
supported yet.

Raises "HibernateException: cannot doAfterTransactionCompletion
multi-table deletes using dialect not supporting temp tables".
This commit is contained in:
Esen Sagynov 2012-10-25 11:16:54 -04:00 committed by brmeyer
parent b9145ab132
commit 9be3666141
1 changed files with 7 additions and 0 deletions

View File

@ -2,9 +2,16 @@ package org.hibernate.test.annotations.filter.subclass.joined;
import junit.framework.Assert;
import org.hibernate.dialect.CUBRIDDialect;
import org.hibernate.test.annotations.filter.subclass.SubClassTest;
import org.junit.Test;
import org.hibernate.testing.*;
@SkipForDialect(
value = CUBRIDDialect.class,
comment = "As of verion 8.4.1 CUBRID doesn't support temporary tables. This test fails with" +
"HibernateException: cannot doAfterTransactionCompletion multi-table deletes using dialect not supporting temp tables"
)
public class JoinedSubClassTest extends SubClassTest{
@Override