Skip to content

Commit af45703

Browse files
committed
fix order
1 parent ac6d968 commit af45703

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mindsdb_sql_parser/lexer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,6 @@ class MindsDBLexer(Lexer):
297297
DIVIDE = r'/'
298298
MODULO = r'%'
299299
BIT_AND = r'&'
300-
BIT_OR = r'\|'
301300
BIT_XOR = r'\^'
302301
ASSIGN_COLON = r':='
303302
RIGHT_SHIFT = r'>>'
@@ -319,6 +318,7 @@ class MindsDBLexer(Lexer):
319318
IN = r'\bIN\b'
320319
CAST = r'\bCAST\b'
321320
CONCAT = r'\|\|'
321+
BIT_OR = r'\|'
322322
BETWEEN = r'\bBETWEEN\b'
323323
INTERVAL = r'\bINTERVAL\b'
324324
WINDOW = r'\bWINDOW\b'

0 commit comments

Comments
 (0)