We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 634c74e commit 667aee9Copy full SHA for 667aee9
1 file changed
sqlparse/keywords.py
@@ -89,8 +89,8 @@ def is_keyword(value):
89
r'(EXPLODE|INLINE|PARSE_URL_TUPLE|POSEXPLODE|STACK)\b',
90
tokens.Keyword),
91
(r"(AT|WITH')\s+TIME\s+ZONE\s+'[^']+'", tokens.Keyword.TZCast),
92
+ (r'(LIKE|ILIKE)\b', tokens.Operator.Comparison),
93
(r'[0-9_A-ZÀ-Ü][_$#\w]*', is_keyword),
-
94
(r'[;:()\[\],\.]', tokens.Punctuation),
95
(r'[<>=~!]+', tokens.Operator.Comparison),
96
(r'[+/@#%^&|`?^-]+', tokens.Operator),
0 commit comments