mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Fix test for MariaDB which does not support delete with subquery with limit
like: delete from bbookmark_user where id in (select t0.id from bbookmark_user t0 where t0.name = ? limit 10)
This commit is contained in:
@@ -20,7 +20,7 @@ public class TestDeleteByQuery extends BaseTestCase {
|
||||
DB.save(u1);
|
||||
}
|
||||
|
||||
@IgnorePlatform(Platform.MYSQL)
|
||||
@IgnorePlatform({Platform.MYSQL, Platform.MARIADB})
|
||||
@Test
|
||||
void maxDelete_expect_singleDeleteStatement() {
|
||||
LoggedSql.start();
|
||||
|
||||
Reference in New Issue
Block a user