summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_regressions.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/test_regressions.py b/tests/test_regressions.py
index 395c2b6..e30ddf0 100644
--- a/tests/test_regressions.py
+++ b/tests/test_regressions.py
@@ -233,3 +233,14 @@ def test_except_formatting():
'WHERE 1 = 2'
])
assert formatted == tformatted
+
+
+def test_null_with_as():
+ sql = 'SELECT NULL AS c1, NULL AS c2 FROM t1'
+ formatted = sqlparse.format(sql, reindent=True)
+ tformatted = '\n'.join([
+ 'SELECT NULL AS c1,',
+ ' NULL AS c2',
+ 'FROM t1'
+ ])
+ assert formatted == tformatted \ No newline at end of file