summaryrefslogtreecommitdiffstats
path: root/sqlglot/tokens.py
diff options
context:
space:
mode:
Diffstat (limited to 'sqlglot/tokens.py')
-rw-r--r--sqlglot/tokens.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sqlglot/tokens.py b/sqlglot/tokens.py
index 2cfcfa6..939ca18 100644
--- a/sqlglot/tokens.py
+++ b/sqlglot/tokens.py
@@ -346,6 +346,7 @@ class TokenType(AutoName):
SOME = auto()
SORT_BY = auto()
START_WITH = auto()
+ STORAGE_INTEGRATION = auto()
STRUCT = auto()
TABLE_SAMPLE = auto()
TEMPORARY = auto()
@@ -577,7 +578,7 @@ class Tokenizer(metaclass=_Tokenizer):
STRING_ESCAPES = ["'"]
VAR_SINGLE_TOKENS: t.Set[str] = set()
- # Whether or not the heredoc tags follow the same lexical rules as unquoted identifiers
+ # Whether the heredoc tags follow the same lexical rules as unquoted identifiers
HEREDOC_TAG_IS_IDENTIFIER = False
# Token that we'll generate as a fallback if the heredoc prefix doesn't correspond to a heredoc