mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Fix concat_expectString test with explicit cast to string
This commit is contained in:
@@ -406,7 +406,7 @@ public class TestAggregationCount extends BaseTestCase {
|
||||
List<String> names =
|
||||
|
||||
Ebean.find(Contact.class)
|
||||
.select(concat("updtime",", ","firstName"))
|
||||
.select(concat("updtime",", ","firstName")+"::String")
|
||||
.where().isNull("phone")
|
||||
.orderBy().asc("lastName")
|
||||
.findSingleAttributeList();
|
||||
|
||||
Reference in New Issue
Block a user