mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-10 05:04:52 +00:00
HHH-8522 CompositeIdTypeBindingTest.testCompositeTypeBinding fails on
sybase157
This commit is contained in:
parent
9e3e86388b
commit
1d53ebb120
@ -31,6 +31,7 @@
|
||||
import org.hibernate.Session;
|
||||
import org.hibernate.dialect.H2Dialect;
|
||||
import org.hibernate.dialect.SQLServerDialect;
|
||||
import org.hibernate.dialect.SybaseDialect;
|
||||
import org.hibernate.testing.SkipForDialect;
|
||||
import org.hibernate.testing.SkipForDialects;
|
||||
import org.hibernate.testing.TestForIssue;
|
||||
@ -42,7 +43,8 @@
|
||||
*/
|
||||
@SkipForDialects({
|
||||
@SkipForDialect(value = H2Dialect.class, comment = "H2 doesn't support this sql syntax"),
|
||||
@SkipForDialect(value = SQLServerDialect.class, comment = "mssql doesn't support multiple columns in the 'where' clause of a 'where in' query")})
|
||||
@SkipForDialect(value = SQLServerDialect.class, comment = "mssql doesn't support multiple columns in the 'where' clause of a 'where in' query"),
|
||||
@SkipForDialect(value = SybaseDialect.class, comment = "sybase doesn't support multiple columns in the 'where' clause of a 'where in' query")})
|
||||
@TestForIssue( jiraKey = "HHH-8312")
|
||||
public class CompositeIdTypeBindingTest extends BaseCoreFunctionalTestCase {
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user