HQL like these:
select h.id, h.residents from Home h
select p.id, elements(p.limbs) from LimbedPet p
return a row for each collection element. We could post-process these
results to return a Collection for the field instead.
For example, if a query returns:
ID, LIMBS
1, "front"
1, "back"
2, "left"
2, "right"
process the results and return:
ID, LIMBS
1, ["front", "back]
2, ["left", "right"]
Original issue reported on code.google.com by dwolvert on 19 May 2009 at 3:02
Original issue reported on code.google.com by
dwolvert
on 19 May 2009 at 3:02