mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
fix several bugs in findSingleAttibute (#980)
* add test case for distinct on id property * suggested fix for "select distinct id" * add test case for distinct with fetch * FIX: .setDistinct(true) can be used in conjunction with fetch() now * add test case for distinct with beans that have a disriminator column * FIX: discriminator column is only read if also Id is read. * fine tuned the test case * added test cases for findSingleAttributeList without distinct * improved fix to support also findSingleAttribute without distinct * ADD: Bonus test case - assertion not yet verified
This commit is contained in:
committed by
Rob Bygrave
parent
40ca179509
commit
a46e086dc4
@@ -5,6 +5,10 @@ import io.ebean.Ebean;
|
||||
import io.ebean.Query;
|
||||
import org.tests.model.basic.Customer;
|
||||
import org.tests.model.basic.ResetBasicData;
|
||||
import org.avaje.test.model.rawsql.inherit.ChildA;
|
||||
import org.avaje.test.model.rawsql.inherit.Data;
|
||||
import org.avaje.test.model.rawsql.inherit.EUncle;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.sql.Date;
|
||||
@@ -125,4 +129,146 @@ public class TestQuerySingleAttribute extends BaseTestCase {
|
||||
query2.findList();
|
||||
assertThat(sqlOf(query2, 1)).contains("select t0.id, t0.name from o_customer t0");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void distinctOnIdProperty(){
|
||||
Query<Customer> query = Ebean.find(Customer.class)
|
||||
.setDistinct(true)
|
||||
.select("id")
|
||||
.setMaxRows(100);
|
||||
|
||||
List<String> ids = query.findSingleAttributeList();
|
||||
if (isSqlServer()) {
|
||||
assertThat(sqlOf(query)).contains("select distinct top 100 t0.id from o_customer t0");
|
||||
} else {
|
||||
assertThat(sqlOf(query)).contains("select distinct t0.id from o_customer t0 limit 100");
|
||||
}
|
||||
assertThat(ids).isNotEmpty();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void distinctWithFetch() {
|
||||
|
||||
ResetBasicData.reset();
|
||||
|
||||
Query<Customer> query = Ebean.find(Customer.class)
|
||||
.setDistinct(true)
|
||||
.fetch("billingAddress","city")
|
||||
.setMaxRows(100);
|
||||
|
||||
List<String> cities = query.findSingleAttributeList();
|
||||
|
||||
assertThat(sqlOf(query)).contains("select distinct t1.city from o_customer t0 left join o_address t1 on t1.id = t0.billing_address_id");
|
||||
assertThat(cities).contains("Auckland").containsNull();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void distinctSelectOnInheritedBean() {
|
||||
|
||||
ResetBasicData.reset();
|
||||
|
||||
Query<ChildA> query = Ebean.find(ChildA.class)
|
||||
.setDistinct(true)
|
||||
.select("more")
|
||||
.setMaxRows(100);
|
||||
|
||||
query.findSingleAttributeList();
|
||||
assertThat(sqlOf(query)).contains("select distinct t0.more from rawinherit_parent t0 where t0.type = 'A' limit 100");
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void distinctFetchManyToOneInheritedBean() {
|
||||
|
||||
ResetBasicData.reset();
|
||||
|
||||
Query<EUncle> query = Ebean.find(EUncle.class)
|
||||
.setDistinct(true)
|
||||
.fetch("parent","more")
|
||||
.setMaxRows(100);
|
||||
|
||||
query.findSingleAttributeList();
|
||||
|
||||
assertThat(sqlOf(query)).contains("select distinct t1.more from rawinherit_uncle t0 join rawinherit_parent t1 on t1.id = t0.parent_id and t1.type in ('A','B')");
|
||||
|
||||
}
|
||||
|
||||
// hmm - same problem when not using distinct
|
||||
@Test
|
||||
public void findSingleOnIdProperty(){
|
||||
Query<Customer> query = Ebean.find(Customer.class)
|
||||
.select("id")
|
||||
.setMaxRows(100);
|
||||
|
||||
List<String> ids = query.findSingleAttributeList();
|
||||
if (isSqlServer()) {
|
||||
assertThat(sqlOf(query)).contains("select top 100 t0.id from o_customer t0");
|
||||
} else {
|
||||
assertThat(sqlOf(query)).contains("select t0.id from o_customer t0 limit 100");
|
||||
}
|
||||
assertThat(ids).isNotEmpty();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void findSingleWithFetch() {
|
||||
|
||||
ResetBasicData.reset();
|
||||
|
||||
Query<Customer> query = Ebean.find(Customer.class)
|
||||
.fetch("billingAddress","city")
|
||||
.setMaxRows(100);
|
||||
|
||||
List<String> cities = query.findSingleAttributeList();
|
||||
|
||||
assertThat(cities).contains("Auckland").containsNull();
|
||||
assertThat(sqlOf(query)).contains("select t1.city from o_customer t0 left join o_address t1 on t1.id = t0.billing_address_id");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void findSingleSelectOnInheritedBean() {
|
||||
|
||||
ResetBasicData.reset();
|
||||
|
||||
Query<ChildA> query = Ebean.find(ChildA.class)
|
||||
.select("more")
|
||||
.setMaxRows(100);
|
||||
|
||||
query.findSingleAttributeList();
|
||||
assertThat(sqlOf(query)).contains("select t0.more from rawinherit_parent t0 where t0.type = 'A' limit 100");
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void findSingleFetchManyToOneInheritedBean() {
|
||||
|
||||
ResetBasicData.reset();
|
||||
|
||||
Query<EUncle> query = Ebean.find(EUncle.class)
|
||||
.fetch("parent","more")
|
||||
.setMaxRows(100);
|
||||
|
||||
query.findSingleAttributeList();
|
||||
|
||||
assertThat(sqlOf(query)).contains("select t1.more from rawinherit_uncle t0 join rawinherit_parent t1 on t1.id = t0.parent_id and t1.type in ('A','B')");
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore //don't know if ebean can handle this on many to many, as this means that the cartesian product is generated
|
||||
|
||||
public void distinctFetchManyToManyInheritedBean() {
|
||||
|
||||
ResetBasicData.reset();
|
||||
|
||||
Query<Data> query = Ebean.find(Data.class)
|
||||
.setDistinct(true)
|
||||
.fetch("parents","more")
|
||||
.setMaxRows(100);
|
||||
|
||||
query.findSingleAttributeList();
|
||||
|
||||
assertThat(sqlOf(query)).contains("select distinct t0.more from rawinherit_data t0 "
|
||||
+ "join rawinherit_parent_rawinherit_data t1 on t0.id = t1.rawinherit_data_id "
|
||||
+ "join parent t2 on t1.rawinherit_parent_id = t2.id");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user