summaryrefslogtreecommitdiff
path: root/sqlparse
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2018-03-21 19:40:13 +0100
committerGitHub <noreply@github.com>2018-03-21 19:40:13 +0100
commitf8acb2ba3ff7ad750c4c73d7b0137302adf83c4f (patch)
treeb199149933079e03d939dab15ae37c5656adecf0 /sqlparse
parent396f19d00fa20a8fc891ab9351bee64b334aac3a (diff)
parent002f37dde390ab2f189c579f5fb18e191f7eed89 (diff)
downloadsqlparse-f8acb2ba3ff7ad750c4c73d7b0137302adf83c4f.tar.gz
Merge pull request #396 from fredyw/issue_385
Fix incorrect splitting with double quotes and a new line
Diffstat (limited to 'sqlparse')
-rw-r--r--sqlparse/keywords.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/sqlparse/keywords.py b/sqlparse/keywords.py
index b5b59e8..bca50ba 100644
--- a/sqlparse/keywords.py
+++ b/sqlparse/keywords.py
@@ -64,6 +64,7 @@ SQL_REGEX = {
(r'-?\d+(?![_A-ZÀ-Ü])', tokens.Number.Integer),
(r"'(''|\\\\|\\'|[^'])*'", tokens.String.Single),
# not a real string literal in ANSI SQL:
+ (r'"(""|\\\\|\\"|[^"])*"', tokens.String.Symbol),
(r'(""|".*?[^\\]")', tokens.String.Symbol),
# sqlite names can be escaped with [square brackets]. left bracket
# cannot be preceded by word character or a right bracket --