mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#1584 - Fix for - Query cache bug, which produces wrong results
This commit is contained in:
+7
-7
@@ -1,14 +1,14 @@
|
||||
package org.tests.query.cache;
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import io.ebean.BaseTestCase;
|
||||
import io.ebean.Ebean;
|
||||
import io.ebean.ExpressionList;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
public class TestDistinct extends BaseTestCase {
|
||||
/**
|
||||
@@ -56,4 +56,4 @@ public class TestDistinct extends BaseTestCase {
|
||||
public ExpressionList<ContractCosts> costsQuery(final Long... aclId) {
|
||||
return Ebean.find(ContractCosts.class).where().in("position.contract.aclEntries.aclEntry.id", aclId);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user