summaryrefslogtreecommitdiff
path: root/sqlparse
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2017-09-14 15:52:00 +0200
committerAndi Albrecht <albrecht.andi@gmail.com>2017-09-14 15:52:00 +0200
commitb3dc9a6ac2dd7511ecb6712ed6aceb4d4ce359ac (patch)
treeb2b314a9eb9e8102f32fa28a16b3f9e0111e9612 /sqlparse
parent5fc7cb0e130ee2c2520c55cced602f6e0a4cf3c3 (diff)
downloadsqlparse-b3dc9a6ac2dd7511ecb6712ed6aceb4d4ce359ac.tar.gz
Code cleanup.
Diffstat (limited to 'sqlparse')
-rw-r--r--sqlparse/keywords.py22
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,
}