mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-30 21:08:30 +08:00
This commit is contained in:
parent
98e67870f9
commit
6e49828fa7
@ -374,7 +374,7 @@ public class HqlParserTest extends QueryBaseWithDomain<HqlParserTest> {
|
||||
// parse( "select foo.id, avg( elements(foo.names) ), max( indices(foo.names) )\n"
|
||||
// + "from eg.Foo foo group by foo.id" );
|
||||
|
||||
select(foo.id, avg(foo.names), max(indices(foo.names))).from(foo).groupBy(foo.id).parse();
|
||||
select(foo.id, HqlGrammar.avg(foo.names), max(indices(foo.names))).from(foo).groupBy(foo.id).parse();
|
||||
|
||||
// parse( "select cat.color, sum(cat.weight), count(cat)\n"
|
||||
// + "from eg.Cat cat group by cat.color\n"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user