mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
EQL - parsing select clause
This commit is contained in:
@@ -89,6 +89,13 @@ class EqlAdapter<T> extends EQLBaseListener {
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void enterSelect_clause(EQLParser.Select_clauseContext ctx) {
|
||||
checkChildren(ctx, 4);
|
||||
String selectProperties = child(ctx, 2);
|
||||
query.select(selectProperties);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void enterFetch_path(EQLParser.Fetch_pathContext ctx) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user