Skip to content

Commit 9b5839d

Browse files
committed
fix: make ast consistent
1 parent ae95c18 commit 9b5839d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlglot/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2760,7 +2760,7 @@ def _parse_select(
27602760
all_ = self._match(TokenType.ALL)
27612761
distinct = self._match_set(self.DISTINCT_TOKENS)
27622762
else:
2763-
all_, distinct = False, False
2763+
all_, distinct = None, None
27642764

27652765
kind = (
27662766
self._match(TokenType.ALIAS)

0 commit comments

Comments
 (0)