We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 791e25d commit b253bb1Copy full SHA for b253bb1
tests/test_split.py
@@ -22,6 +22,11 @@ def test_split_backslash():
22
assert len(stmts) == 2
23
24
25
+def test_escaped_quotes(): # issue780
26
+ stmts = sqlparse.parse("SELECT (')\'');a');")
27
+ assert len(stmts) == 1
28
+
29
30
@pytest.mark.parametrize('fn', ['function.sql',
31
'function_psql.sql',
32
'function_psql2.sql',
0 commit comments