We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac6d968 commit af45703Copy full SHA for af45703
1 file changed
mindsdb_sql_parser/lexer.py
@@ -297,7 +297,6 @@ class MindsDBLexer(Lexer):
297
DIVIDE = r'/'
298
MODULO = r'%'
299
BIT_AND = r'&'
300
- BIT_OR = r'\|'
301
BIT_XOR = r'\^'
302
ASSIGN_COLON = r':='
303
RIGHT_SHIFT = r'>>'
@@ -319,6 +318,7 @@ class MindsDBLexer(Lexer):
319
318
IN = r'\bIN\b'
320
CAST = r'\bCAST\b'
321
CONCAT = r'\|\|'
+ BIT_OR = r'\|'
322
BETWEEN = r'\bBETWEEN\b'
323
INTERVAL = r'\bINTERVAL\b'
324
WINDOW = r'\bWINDOW\b'
0 commit comments