diff options
| author | Rowan Seymour <rowanseymour@gmail.com> | 2017-02-09 11:13:06 +0200 |
|---|---|---|
| committer | Rowan Seymour <rowanseymour@gmail.com> | 2017-02-09 11:13:06 +0200 |
| commit | 7c37c7f9132028b5af9c02bcccc33bef1c33787a (patch) | |
| tree | 41e41653527f3920787a596a7514aee93d916536 /sqlparse | |
| parent | d67c442db4fd8b60a97440e84b9c21e80e4e958c (diff) | |
| download | sqlparse-7c37c7f9132028b5af9c02bcccc33bef1c33787a.tar.gz | |
CONCURRENTLY should be handled as a keyword
Diffstat (limited to 'sqlparse')
| -rw-r--r-- | sqlparse/keywords.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sqlparse/keywords.py b/sqlparse/keywords.py index 1fd07c1..d68b4ae 100644 --- a/sqlparse/keywords.py +++ b/sqlparse/keywords.py @@ -167,6 +167,7 @@ KEYWORDS = { 'COMMIT': tokens.Keyword.DML, 'COMMITTED': tokens.Keyword, 'COMPLETION': tokens.Keyword, + 'CONCURRENTLY': tokens.Keyword, 'CONDITION_NUMBER': tokens.Keyword, 'CONNECT': tokens.Keyword, 'CONNECTION': tokens.Keyword, |
