Compare commits

..

No commits in common. "12dcf05eafce643f0ceb6ded2bad4eb8351cbc38" and "8f93c2e2da7c22f84bb6f0d3511cef535ea06be6" have entirely different histories.

1 changed files with 1 additions and 16 deletions

View File

@ -79,8 +79,7 @@ def parse_ruleset(ps):
ps3 = parse_table_rule(ps2) or \
parse_column_rule(ps2) or \
parse_data_rule(ps2) or \
parse_index_rule(ps2) or \
parse_view_rule(ps2)
parse_index_rule(ps2)
if ps3:
ps2.ast.append(ps3.ast)
ps2.position = ps3.position
@ -274,20 +273,6 @@ def parse_index_rule(ps):
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):