Revert "#2908 - [Oracle] Change OraclePlatform to use AnsiSqlLimiter (noting Oracle does not support FOR UPDATE with FETCH/OFFSET"

This reverts commit 62ed5a9f
This commit is contained in:
Rob Bygrave
2022-12-01 22:51:37 +13:00
parent 928db1f0f6
commit a17e62b491
4 changed files with 45 additions and 8 deletions
@@ -1,10 +1,10 @@
package org.tests.basic;
import io.ebean.*;
import io.ebean.annotation.Platform;
import io.ebean.test.LoggedSql;
import io.ebean.xtest.BaseTestCase;
import io.ebean.xtest.ForPlatform;
import io.ebean.annotation.Platform;
import io.ebean.test.LoggedSql;
import io.ebean.xtest.IgnorePlatform;
import org.junit.jupiter.api.Test;
import org.tests.model.basic.Customer;
@@ -41,7 +41,7 @@ public class TestQueryForUpdate extends BaseTestCase {
}
}
@IgnorePlatform({Platform.ORACLE, Platform.DB2})
@IgnorePlatform({Platform.DB2})
@Test
public void testForUpdate_withLimit() {
ResetBasicData.reset();