EQL - parsing select clause

This commit is contained in:
Robin Bygrave
2016-07-13 13:55:56 +12:00
parent 45d7e3cafd
commit a8c2fc2ed5
2 changed files with 16 additions and 0 deletions
@@ -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) {