You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update groovy monorepo to v3.0.11
* Improvements around CompileStatic
In Apache Groovy 3.0.11, the compiler is more strict towards type conversion.
Co-authored-by: Renovate Bot <[email protected]>
Co-authored-by: Puneet Behl <[email protected]>
Original Reporter: wdong18
Environment: Not Specified
Version: 1.0.0.RC5
Migrated From: http://jira.grails.org/browse/GPMONGODB-213
Suppose Student domain is like:
[classcode:01,studentcode:0101],
[classcode:01,studentcode:0102],
[classcode:02:studentcode:0201]
and I want to get only classcodes like this:
def c = Student.createCriteria();
def stList = c.list {
projections{
property("classcode")
}
}
and stList.size() is 2 instead of 3.
The result is [10,20], not [10,10,20]
The text was updated successfully, but these errors were encountered: