|
22 | 22 | import org.hibernate.cfg.AvailableSettings;
|
23 | 23 | import org.hibernate.community.dialect.AltibaseDialect;
|
24 | 24 | import org.hibernate.community.dialect.FirebirdDialect;
|
| 25 | +import org.hibernate.community.dialect.GaussDBDialect; |
25 | 26 | import org.hibernate.community.dialect.InformixDialect;
|
26 | 27 | import org.hibernate.dialect.HANADialect;
|
27 | 28 | import org.hibernate.dialect.CockroachDialect;
|
@@ -1189,6 +1190,7 @@ public void testLockTimeoutEMProps() throws Exception {
|
1189 | 1190 | @SkipForDialect(value = CockroachDialect.class, comment = "Cockroach supports the 'for no key update' syntax but it doesn't work")
|
1190 | 1191 | @SkipForDialect(value = FirebirdDialect.class, comment = "Seems like FK constraint checks are not compatible with exclusive locks")
|
1191 | 1192 | @SkipForDialect(value = AltibaseDialect.class, comment = "Seems like FK constraint checks are not compatible with exclusive locks")
|
| 1193 | + @SkipForDialect(value = GaussDBDialect.class, comment = "The USTORE storage engine does not support For Key Share and For No Key Update") |
1192 | 1194 | public void testLockInsertFkTarget() {
|
1193 | 1195 | Lock lock = new Lock();
|
1194 | 1196 | lock.setName( "name" );
|
@@ -1228,6 +1230,7 @@ public void testLockInsertFkTarget() {
|
1228 | 1230 | @SkipForDialect(value = CockroachDialect.class, comment = "Cockroach supports the 'for no key update' syntax but it doesn't work")
|
1229 | 1231 | @SkipForDialect(value = FirebirdDialect.class, comment = "Seems like FK constraint checks are not compatible with exclusive locks")
|
1230 | 1232 | @SkipForDialect(value = AltibaseDialect.class, comment = "FK constraint checks are not compatible with exclusive locks")
|
| 1233 | + @SkipForDialect(value = GaussDBDialect.class, comment = "The USTORE storage engine does not support For Key Share and For No Key Update") |
1231 | 1234 | public void testLockUpdateFkTarget() {
|
1232 | 1235 | Lock lock1 = new Lock();
|
1233 | 1236 | lock1.setName( "l1" );
|
|
0 commit comments