Skip to content

Commit e482155

Browse files
committed
fix order
1 parent af45703 commit e482155

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mindsdb_sql_parser/lexer.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,9 @@ class MindsDBLexer(Lexer):
272272
LPAREN = r'\('
273273
RPAREN = r'\)'
274274
PARAMETER = r'\?'
275+
276+
ASSIGN_COLON = r':='
277+
275278
# json
276279
LBRACE = r'\{'
277280
RBRACE = r'\}'
@@ -298,7 +301,6 @@ class MindsDBLexer(Lexer):
298301
MODULO = r'%'
299302
BIT_AND = r'&'
300303
BIT_XOR = r'\^'
301-
ASSIGN_COLON = r':='
302304
RIGHT_SHIFT = r'>>'
303305
LEFT_SHIFT = r'<<'
304306
EQUALS = r'='

0 commit comments

Comments
 (0)