We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 821fed5 commit 1462080Copy full SHA for 1462080
cmstestsuite/unit_tests/schema_diff_test.py
@@ -35,7 +35,12 @@ def split_schema(schema: str) -> list[list[str]]:
35
statements: list[list[str]] = []
36
cur_statement: list[str] = []
37
for line in schema.splitlines():
38
- if line == "" or line.startswith("--"):
+ if (
39
+ line == ""
40
+ or line.startswith("--")
41
+ or line.startswith("\\restrict")
42
+ or line.startswith("\\unrestrict")
43
+ ):
44
continue
45
cur_statement.append(line)
46
if line.endswith(";"):
0 commit comments