We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af04e56 commit 91bca4aCopy full SHA for 91bca4a
1 file changed
mindsdb_sql_parser/ast/select/operation.py
@@ -1,12 +1,11 @@
1
from mindsdb_sql_parser.ast.base import ASTNode
2
from mindsdb_sql_parser.exceptions import ParsingException
3
from mindsdb_sql_parser.utils import indent
4
-
+from mindsdb_sql_parser.ast.select.tuple import Tuple
5
6
class Operation(ASTNode):
7
def __init__(self, op, args, *args_, **kwargs):
8
super().__init__(*args_, **kwargs)
9
- from mindsdb_sql_parser.ast import Tuple
10
11
self.op = ' '.join(op.lower().split())
12
self.args = []
0 commit comments