Merge pull request #1944 from ebean-orm/feature/1943

#1943 - Use limit & offset via setFirstRow() and setMaxRows() on filterMany()
This commit is contained in:
Rob Bygrave
2020-02-22 09:26:03 +13:00
committed by GitHub
9 changed files with 139 additions and 26 deletions
@@ -53,7 +53,7 @@ public class TestLimitQuery extends BaseTestCase {
.fetch("details")
.where().gt("details.id", 0)
.setMaxRows(3)
.setFirstRow(0);
.setFirstRow(0).query();
query.findList();
@@ -96,7 +96,7 @@ public class TestLimitQuery extends BaseTestCase {
.setAutoTune(false)
.fetch("details")
.where().gt("details.id", 0)
.setMaxRows(10);
.setMaxRows(10).query();
//.findList();
List<Order> list = query.findList();
@@ -1,7 +1,9 @@
package org.tests.query;
import io.ebean.BaseTestCase;
import io.ebean.DB;
import io.ebean.Ebean;
import io.ebean.ExpressionList;
import io.ebean.FetchConfig;
import io.ebean.Query;
import org.ebeantest.LoggedSqlCollector;
@@ -44,6 +46,94 @@ public class TestQueryFilterMany extends BaseTestCase {
}
@Test
public void filterMany_firstMaxRows_fluidStyle() {
ResetBasicData.reset();
LoggedSqlCollector.start();
final Query<Customer> query = DB.find(Customer.class)
.where().ieq("name", "Rob")
// fluid style adding maxRows/firstRow to filterMany
.filterMany("orders").eq("status", Order.Status.NEW).setMaxRows(100).setFirstRow(3)
.order().asc("id").setMaxRows(5);
final List<Customer> customers = query.findList();
assertThat(customers).isNotEmpty();
List<String> sqlList = LoggedSqlCollector.stop();
assertEquals(2, sqlList.size());
assertThat(sqlList.get(0)).contains("lower(t0.name) = ?");
assertThat(sqlList.get(1)).contains("status = ?");
if (isH2() || isPostgres()) {
assertThat(sqlList.get(0)).doesNotContain("offset");
assertThat(sqlList.get(0)).contains(" limit 5");
assertThat(sqlList.get(1)).contains(" offset 3");
assertThat(sqlList.get(1)).contains(" limit 100");
}
}
@Test
public void test_firstMaxRows() {
ResetBasicData.reset();
LoggedSqlCollector.start();
final Query<Customer> query = DB.find(Customer.class)
.where().ieq("name", "Rob")
.order().asc("id").setMaxRows(5);
// non-fluid style adding maxRows/firstRow
final ExpressionList<Customer> filterMany = query.filterMany("orders").eq("status", Order.Status.NEW);
filterMany.setMaxRows(100);
filterMany.setFirstRow(3);
final List<Customer> customers = query.findList();
assertThat(customers).isNotEmpty();
List<String> sqlList = LoggedSqlCollector.stop();
assertEquals(2, sqlList.size());
assertThat(sqlList.get(0)).contains("lower(t0.name) = ?");
assertThat(sqlList.get(1)).contains("status = ?");
if (isH2() || isPostgres()) {
assertThat(sqlList.get(0)).doesNotContain("offset");
assertThat(sqlList.get(0)).contains(" limit 5");
assertThat(sqlList.get(1)).contains(" offset 3");
assertThat(sqlList.get(1)).contains(" limit 100");
}
}
@Test
public void filterMany_firstMaxRows_expressionFluidStyle() {
ResetBasicData.reset();
LoggedSqlCollector.start();
final Query<Customer> query = DB.find(Customer.class)
.where().ieq("name", "Rob")
// use expression + fluid style adding maxRows/firstRow to filterMany
.filterMany("orders", "status = ?", Order.Status.NEW).setMaxRows(100).setFirstRow(3)
.order().asc("id").setMaxRows(5);
final List<Customer> customers = query.findList();
assertThat(customers).isNotEmpty();
List<String> sqlList = LoggedSqlCollector.stop();
assertEquals(2, sqlList.size());
assertThat(sqlList.get(0)).contains("lower(t0.name) = ?");
assertThat(sqlList.get(1)).contains("status = ?");
if (isH2() || isPostgres()) {
assertThat(sqlList.get(0)).doesNotContain("offset");
assertThat(sqlList.get(0)).contains(" limit 5");
assertThat(sqlList.get(1)).contains(" offset 3");
assertThat(sqlList.get(1)).contains(" limit 100");
}
}
@Test
public void test_with_findOne() {
@@ -196,7 +196,7 @@ public class TestQueryFindIterate extends BaseTestCase {
Query<Customer> query = server.find(Customer.class)
.setAutoTune(false)
.where().gt("id", "JUNK_NOT_A_LONG")
.setMaxRows(2);
.setMaxRows(2).query();
// this throws an exception immediately
query.findEach(bean -> {
@@ -221,7 +221,7 @@ public class TestQueryFindIterate extends BaseTestCase {
Query<Customer> query = server.find(Customer.class)
.setAutoTune(false)
.where().gt("id", 0)
.setMaxRows(2);
.setMaxRows(2).query();
query.findEach(customer -> {
if (customer != null) {