mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#3270 Fix for use with BeanFindController and attribute queries
The existence of a BeanFindController should not break the use of single attribute queries + still allow auto-tuning.
This commit is contained in:
@@ -26,7 +26,7 @@ public class SpiServerTest extends BaseTestCase {
|
||||
BeanType<Customer> beanType = pluginApi.beanType(Customer.class);
|
||||
assertEquals("o_customer", beanType.baseTable());
|
||||
assertNotNull(pluginApi.databasePlatform());
|
||||
assertNull(beanType.findController());
|
||||
assertNotNull(beanType.findController());
|
||||
assertNotNull(beanType.persistController());
|
||||
assertNull(beanType.persistListener());
|
||||
assertNull(beanType.queryAdapter());
|
||||
|
||||
Reference in New Issue
Block a user