mirror of
https://github.com/querydsl/querydsl.git
synced 2026-07-03 21:07:49 +08:00
added test
This commit is contained in:
parent
5841dbb8b8
commit
12d068c5eb
@ -329,6 +329,11 @@ public class ParsingTest extends AbstractQueryTest{
|
||||
|
||||
query().from(cat).leftJoin(cat.mate).select(cat).parse();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void joins2() throws RecognitionException, TokenStreamException{
|
||||
query().from(cat).join(cat.mate, mate).with(mate.name.eq("Bob")).parse();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void multipleFromClasses() throws Exception {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user