We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a36900 commit c02e954Copy full SHA for c02e954
1 file changed
mindsdb_sql_parser/parser.py
@@ -1731,6 +1731,7 @@ def json_value(self, p):
1731
'identifier DOT star')
1732
def identifier(self, p):
1733
node = p[0]
1734
+ is_quoted = False
1735
if isinstance(p[2], Star):
1736
node.parts.append(p[2])
1737
elif isinstance(p[2], int):
@@ -1739,7 +1740,8 @@ def identifier(self, p):
1739
1740
1741
else:
1742
node.parts += p[2].parts
- node.is_quoted.append(p[2].is_quoted[0])
1743
+ is_quoted = p[2].is_quoted[0]
1744
+ node.is_quoted.append(is_quoted)
1745
return node
1746
1747
@_('quote_string',
0 commit comments