We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 420a098 commit 39ac616Copy full SHA for 39ac616
1 file changed
tests/test_parser_formatter_e2e.py
@@ -32,6 +32,6 @@ def test_subquery_e2e():
32
WHERE deptname = 'OPERATIONS')
33
AND 1=1
34
"""
35
- # parsed_ast = parser.parse(original_sql)
36
- # formatted_sql = formatter.format(parsed_ast)
37
- # assert parse(formatted_sql) == parse(original_sql)
+ parsed_ast = parser.parse(original_sql)
+ formatted_sql = formatter.format(parsed_ast)
+ assert parse(formatted_sql) == parse(original_sql)
0 commit comments