mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#1787 - Update CockroachDB support for DDL generation with autocommit and no history support
This commit is contained in:
@@ -21,7 +21,7 @@ public class TestCommitAndContinue extends BaseTestCase {
|
||||
|
||||
@Test
|
||||
@Transactional
|
||||
@IgnorePlatform({Platform.SQLSERVER, Platform.HSQLDB}) // they will dead lock
|
||||
@IgnorePlatform({Platform.SQLSERVER, Platform.HSQLDB, Platform.COCKROACH}) // they will dead lock
|
||||
public void transactional_partialSuccess() {
|
||||
|
||||
MnyB a = new MnyB("a100");
|
||||
@@ -57,7 +57,7 @@ public class TestCommitAndContinue extends BaseTestCase {
|
||||
* The @Transactional is nicer to me.
|
||||
*/
|
||||
@Test
|
||||
@IgnorePlatform({Platform.SQLSERVER, Platform.HSQLDB}) // they will dead lock
|
||||
@IgnorePlatform({Platform.SQLSERVER, Platform.HSQLDB, Platform.COCKROACH}) // they will dead lock
|
||||
public void tryFinally_partialSuccess() {
|
||||
|
||||
MnyB a = new MnyB("a100");
|
||||
@@ -101,7 +101,7 @@ public class TestCommitAndContinue extends BaseTestCase {
|
||||
|
||||
@Test
|
||||
@Transactional
|
||||
@IgnorePlatform({Platform.SQLSERVER, Platform.HSQLDB}) // they will dead lock
|
||||
@IgnorePlatform({Platform.SQLSERVER, Platform.HSQLDB, Platform.COCKROACH}) // they will dead lock
|
||||
public void transactional_partialSuccess_secondTransactionInsert() {
|
||||
|
||||
MnyB a = new MnyB("a100");
|
||||
|
||||
Reference in New Issue
Block a user