#2904 MySql and MariaDB do not support OFFSET without LIMIT, ignore them for these tests

This commit is contained in:
Rob Bygrave
2022-12-01 21:27:44 +13:00
parent 7aa64f47c8
commit 45529958ef
2 changed files with 6 additions and 0 deletions
@@ -1,8 +1,10 @@
package org.tests.basic;
import io.ebean.annotation.Platform;
import io.ebean.xtest.BaseTestCase;
import io.ebean.DB;
import io.ebean.Query;
import io.ebean.xtest.IgnorePlatform;
import org.junit.jupiter.api.Test;
import org.tests.model.basic.Order;
import org.tests.model.basic.ResetBasicData;
@@ -22,6 +24,7 @@ public class TestLimitQuery extends BaseTestCase {
rob();
}
@IgnorePlatform({Platform.MYSQL, Platform.MARIADB})
@Test
public void testMaxRowsZeroWithFirstRow() {