Compare commits
3 Commits
8f93c2e2da
...
12dcf05eaf
Author | SHA1 | Date |
---|---|---|
|
12dcf05eaf | |
|
43272bb96a | |
|
d31204cd5c |
|
@ -79,7 +79,8 @@ def parse_ruleset(ps):
|
||||||
ps3 = parse_table_rule(ps2) or \
|
ps3 = parse_table_rule(ps2) or \
|
||||||
parse_column_rule(ps2) or \
|
parse_column_rule(ps2) or \
|
||||||
parse_data_rule(ps2) or \
|
parse_data_rule(ps2) or \
|
||||||
parse_index_rule(ps2)
|
parse_index_rule(ps2) or \
|
||||||
|
parse_view_rule(ps2)
|
||||||
if ps3:
|
if ps3:
|
||||||
ps2.ast.append(ps3.ast)
|
ps2.ast.append(ps3.ast)
|
||||||
ps2.position = ps3.position
|
ps2.position = ps3.position
|
||||||
|
@ -273,6 +274,20 @@ def parse_index_rule(ps):
|
||||||
|
|
||||||
return ps2
|
return ps2
|
||||||
|
|
||||||
|
def parse_view_rule(ps):
|
||||||
|
ps2 = ps.clone()
|
||||||
|
ps2.skip_whitespace_and_comments()
|
||||||
|
if not ps2.match(r"view\b"):
|
||||||
|
ps.record_child_failure(ps2, "expected “view”")
|
||||||
|
return
|
||||||
|
ps2.skip_whitespace_and_comments()
|
||||||
|
ps3 = parse_table_name(ps2)
|
||||||
|
if not ps3:
|
||||||
|
ps.record_child_failure(ps2, "expected view name")
|
||||||
|
return
|
||||||
|
ps2.skip_whitespace_and_comments()
|
||||||
|
ps3 = parse_multiline_string(ps2)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def parse_table_name(ps):
|
def parse_table_name(ps):
|
||||||
|
|
Loading…
Reference in New Issue