We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fc7cb0 commit b3dc9a6Copy full SHA for b3dc9a6
1 file changed
sqlparse/keywords.py
@@ -804,15 +804,15 @@ def is_keyword(value):
804
805
# PostgreSQL Syntax
806
KEYWORDS_PLPGSQL = {
807
- 'PARTITION': tokens.Keyword,
808
- 'OVER': tokens.Keyword,
809
- 'PERFORM': tokens.Keyword,
810
- 'NOTICE': tokens.Keyword,
811
- 'PLPGSQL': tokens.Keyword,
812
- 'INHERIT': tokens.Keyword,
813
- 'INDEXES': tokens.Keyword,
814
-
815
- 'FOR': tokens.Keyword,
816
- 'IN': tokens.Keyword,
817
- '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,
818
}
0 commit comments