We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af45703 commit e482155Copy full SHA for e482155
1 file changed
mindsdb_sql_parser/lexer.py
@@ -272,6 +272,9 @@ class MindsDBLexer(Lexer):
272
LPAREN = r'\('
273
RPAREN = r'\)'
274
PARAMETER = r'\?'
275
+
276
+ ASSIGN_COLON = r':='
277
278
# json
279
LBRACE = r'\{'
280
RBRACE = r'\}'
@@ -298,7 +301,6 @@ class MindsDBLexer(Lexer):
298
301
MODULO = r'%'
299
302
BIT_AND = r'&'
300
303
BIT_XOR = r'\^'
- ASSIGN_COLON = r':='
304
RIGHT_SHIFT = r'>>'
305
LEFT_SHIFT = r'<<'
306
EQUALS = r'='
0 commit comments