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:
Rob Bygrave
2023-09-11 23:05:55 +12:00
parent 0842a3f3e2
commit 400e840c22
@@ -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();