Skip to content

Commit 1a1c0ef

Browse files
removed redundant code
1 parent 1ea1063 commit 1a1c0ef

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
@@ -1153,9 +1153,6 @@ def _fold_identifier_literal(self, arg: exp.Expr | None) -> exp.Expr:
11531153

11541154
def _parse_identifier_function(self) -> exp.Expr:
11551155
arg = self._parse_string()
1156-
if not arg and (self._advance_any() or self._match_set(self.ID_VAR_TOKENS)):
1157-
quoted = self._prev.token_type == TokenType.STRING
1158-
arg = self._identifier_expression(quoted=quoted)
11591156
self._match_r_paren()
11601157
return self._fold_identifier_literal(arg)
11611158

0 commit comments

Comments
 (0)