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:
parent
b9145ab132
commit
9be3666141
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue