Skip to content
Snippets Groups Projects
Commit 21016c6d060c authored by Paul McGuire's avatar Paul McGuire
Browse files

Fix 'from' results name to include all join elements.

parent ce857212337f
Branches
No related tags found
No related merge requests found
......@@ -99,7 +99,7 @@
result_column = "*" | table_name + "." + "*" | Group(expr + Optional(Optional(AS) + column_alias))
select_core = (SELECT + Optional(DISTINCT | ALL) + Group(delimitedList(result_column))("columns") +
Optional(FROM + join_source("from")) +
Optional(FROM + join_source("from*")) +
Optional(WHERE + expr("where_expr")) +
Optional(GROUP + BY + Group(delimitedList(ordering_term)("group_by_terms")) +
Optional(HAVING + expr("having_expr"))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment