This commit is contained in:
Timo Westkämper 2010-10-08 14:22:40 +00:00
parent 24e1b0932e
commit 13e844d00d

View File

@ -24,6 +24,8 @@ class QuerySyntaxTest {
def Query_Syntax() {
query from(c) innerJoin(b) from(c1) where (c1.name like "a%") orderBy(c.name asc) list(c)
query from(c) innerJoin(b) list(b.id count)
query from (c) list (c.id, c.name)
}
@Test