diff options
| author | Andi Albrecht <albrecht.andi@gmail.com> | 2017-09-14 15:52:00 +0200 |
|---|---|---|
| committer | Andi Albrecht <albrecht.andi@gmail.com> | 2017-09-14 15:52:00 +0200 |
| commit | b3dc9a6ac2dd7511ecb6712ed6aceb4d4ce359ac (patch) | |
| tree | b2b314a9eb9e8102f32fa28a16b3f9e0111e9612 /sqlparse/keywords.py | |
| parent | 5fc7cb0e130ee2c2520c55cced602f6e0a4cf3c3 (diff) | |
| download | sqlparse-b3dc9a6ac2dd7511ecb6712ed6aceb4d4ce359ac.tar.gz | |
Code cleanup.
Diffstat (limited to 'sqlparse/keywords.py')
| -rw-r--r-- | sqlparse/keywords.py | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sqlparse/keywords.py b/sqlparse/keywords.py index c63f1cc..649b5cc 100644 --- a/sqlparse/keywords.py +++ b/sqlparse/keywords.py @@ -804,15 +804,15 @@ KEYWORDS_ORACLE = { # PostgreSQL Syntax KEYWORDS_PLPGSQL = { - 'PARTITION': tokens.Keyword, - 'OVER': tokens.Keyword, - 'PERFORM': tokens.Keyword, - 'NOTICE': tokens.Keyword, - 'PLPGSQL': tokens.Keyword, - 'INHERIT': tokens.Keyword, - 'INDEXES': tokens.Keyword, - - 'FOR': tokens.Keyword, - 'IN': tokens.Keyword, - 'LOOP': tokens.Keyword, + 'PARTITION': tokens.Keyword, + 'OVER': tokens.Keyword, + 'PERFORM': tokens.Keyword, + 'NOTICE': tokens.Keyword, + 'PLPGSQL': tokens.Keyword, + 'INHERIT': tokens.Keyword, + 'INDEXES': tokens.Keyword, + + 'FOR': tokens.Keyword, + 'IN': tokens.Keyword, + 'LOOP': tokens.Keyword, } |
