Skip to content

Commit 7750e94

Browse files
removed redundant code
1 parent 70c6f3e commit 7750e94

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

sqlglot/parsers/snowflake.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1132,9 +1132,6 @@ def _fold_identifier_literal(self, arg: exp.Expr | None) -> exp.Expr:
11321132

11331133
def _parse_identifier_function(self) -> exp.Expr:
11341134
arg = self._parse_string()
1135-
if not arg and (self._advance_any() or self._match_set(self.ID_VAR_TOKENS)):
1136-
quoted = self._prev.token_type == TokenType.STRING
1137-
arg = self._identifier_expression(quoted=quoted)
11381135
self._match_r_paren()
11391136
return self._fold_identifier_literal(arg)
11401137

0 commit comments

Comments
 (0)