Edit on GitHub

sqlglot.dialects.tsql

  1from __future__ import annotations
  2
  3import datetime
  4import re
  5import typing as t
  6
  7from sqlglot import exp, generator, parser, tokens, transforms
  8from sqlglot.dialects.dialect import (
  9    Dialect,
 10    NormalizationStrategy,
 11    any_value_to_max_sql,
 12    date_delta_sql,
 13    generatedasidentitycolumnconstraint_sql,
 14    max_or_greatest,
 15    min_or_least,
 16    parse_date_delta,
 17    path_to_jsonpath,
 18    rename_func,
 19    timestrtotime_sql,
 20)
 21from sqlglot.expressions import DataType
 22from sqlglot.helper import seq_get
 23from sqlglot.time import format_time
 24from sqlglot.tokens import TokenType
 25
 26if t.TYPE_CHECKING:
 27    from sqlglot._typing import E
 28
 29FULL_FORMAT_TIME_MAPPING = {
 30    "weekday": "%A",
 31    "dw": "%A",
 32    "w": "%A",
 33    "month": "%B",
 34    "mm": "%B",
 35    "m": "%B",
 36}
 37
 38DATE_DELTA_INTERVAL = {
 39    "year": "year",
 40    "yyyy": "year",
 41    "yy": "year",
 42    "quarter": "quarter",
 43    "qq": "quarter",
 44    "q": "quarter",
 45    "month": "month",
 46    "mm": "month",
 47    "m": "month",
 48    "week": "week",
 49    "ww": "week",
 50    "wk": "week",
 51    "day": "day",
 52    "dd": "day",
 53    "d": "day",
 54}
 55
 56
 57DATE_FMT_RE = re.compile("([dD]{1,2})|([mM]{1,2})|([yY]{1,4})|([hH]{1,2})|([sS]{1,2})")
 58
 59# N = Numeric, C=Currency
 60TRANSPILE_SAFE_NUMBER_FMT = {"N", "C"}
 61
 62DEFAULT_START_DATE = datetime.date(1900, 1, 1)
 63
 64BIT_TYPES = {exp.EQ, exp.NEQ, exp.Is, exp.In, exp.Select, exp.Alias}
 65
 66
 67def _format_time_lambda(
 68    exp_class: t.Type[E], full_format_mapping: t.Optional[bool] = None
 69) -> t.Callable[[t.List], E]:
 70    def _format_time(args: t.List) -> E:
 71        assert len(args) == 2
 72
 73        return exp_class(
 74            this=exp.cast(args[1], "datetime"),
 75            format=exp.Literal.string(
 76                format_time(
 77                    args[0].name.lower(),
 78                    {**TSQL.TIME_MAPPING, **FULL_FORMAT_TIME_MAPPING}
 79                    if full_format_mapping
 80                    else TSQL.TIME_MAPPING,
 81                )
 82            ),
 83        )
 84
 85    return _format_time
 86
 87
 88def _parse_format(args: t.List) -> exp.Expression:
 89    this = seq_get(args, 0)
 90    fmt = seq_get(args, 1)
 91    culture = seq_get(args, 2)
 92
 93    number_fmt = fmt and (fmt.name in TRANSPILE_SAFE_NUMBER_FMT or not DATE_FMT_RE.search(fmt.name))
 94
 95    if number_fmt:
 96        return exp.NumberToStr(this=this, format=fmt, culture=culture)
 97
 98    if fmt:
 99        fmt = exp.Literal.string(
100            format_time(fmt.name, TSQL.FORMAT_TIME_MAPPING)
101            if len(fmt.name) == 1
102            else format_time(fmt.name, TSQL.TIME_MAPPING)
103        )
104
105    return exp.TimeToStr(this=this, format=fmt, culture=culture)
106
107
108def _parse_eomonth(args: t.List) -> exp.LastDay:
109    date = exp.TsOrDsToDate(this=seq_get(args, 0))
110    month_lag = seq_get(args, 1)
111
112    if month_lag is None:
113        this: exp.Expression = date
114    else:
115        unit = DATE_DELTA_INTERVAL.get("month")
116        this = exp.DateAdd(this=date, expression=month_lag, unit=unit and exp.var(unit))
117
118    return exp.LastDay(this=this)
119
120
121def _parse_hashbytes(args: t.List) -> exp.Expression:
122    kind, data = args
123    kind = kind.name.upper() if kind.is_string else ""
124
125    if kind == "MD5":
126        args.pop(0)
127        return exp.MD5(this=data)
128    if kind in ("SHA", "SHA1"):
129        args.pop(0)
130        return exp.SHA(this=data)
131    if kind == "SHA2_256":
132        return exp.SHA2(this=data, length=exp.Literal.number(256))
133    if kind == "SHA2_512":
134        return exp.SHA2(this=data, length=exp.Literal.number(512))
135
136    return exp.func("HASHBYTES", *args)
137
138
139DATEPART_ONLY_FORMATS = {"DW", "HOUR", "QUARTER"}
140
141
142def _format_sql(self: TSQL.Generator, expression: exp.NumberToStr | exp.TimeToStr) -> str:
143    fmt = (
144        expression.args["format"]
145        if isinstance(expression, exp.NumberToStr)
146        else exp.Literal.string(
147            format_time(
148                expression.text("format"),
149                t.cast(t.Dict[str, str], TSQL.INVERSE_TIME_MAPPING),
150            )
151        )
152    )
153
154    # There is no format for "quarter"
155    name = fmt.name.upper()
156    if name in DATEPART_ONLY_FORMATS:
157        return self.func("DATEPART", name, expression.this)
158
159    return self.func("FORMAT", expression.this, fmt, expression.args.get("culture"))
160
161
162def _string_agg_sql(self: TSQL.Generator, expression: exp.GroupConcat) -> str:
163    this = expression.this
164    distinct = expression.find(exp.Distinct)
165    if distinct:
166        # exp.Distinct can appear below an exp.Order or an exp.GroupConcat expression
167        self.unsupported("T-SQL STRING_AGG doesn't support DISTINCT.")
168        this = distinct.pop().expressions[0]
169
170    order = ""
171    if isinstance(expression.this, exp.Order):
172        if expression.this.this:
173            this = expression.this.this.pop()
174        order = f" WITHIN GROUP ({self.sql(expression.this)[1:]})"  # Order has a leading space
175
176    separator = expression.args.get("separator") or exp.Literal.string(",")
177    return f"STRING_AGG({self.format_args(this, separator)}){order}"
178
179
180def _parse_date_delta(
181    exp_class: t.Type[E], unit_mapping: t.Optional[t.Dict[str, str]] = None
182) -> t.Callable[[t.List], E]:
183    def inner_func(args: t.List) -> E:
184        unit = seq_get(args, 0)
185        if unit and unit_mapping:
186            unit = exp.var(unit_mapping.get(unit.name.lower(), unit.name))
187
188        start_date = seq_get(args, 1)
189        if start_date and start_date.is_number:
190            # Numeric types are valid DATETIME values
191            if start_date.is_int:
192                adds = DEFAULT_START_DATE + datetime.timedelta(days=int(start_date.this))
193                start_date = exp.Literal.string(adds.strftime("%F"))
194            else:
195                # We currently don't handle float values, i.e. they're not converted to equivalent DATETIMEs.
196                # This is not a problem when generating T-SQL code, it is when transpiling to other dialects.
197                return exp_class(this=seq_get(args, 2), expression=start_date, unit=unit)
198
199        return exp_class(
200            this=exp.TimeStrToTime(this=seq_get(args, 2)),
201            expression=exp.TimeStrToTime(this=start_date),
202            unit=unit,
203        )
204
205    return inner_func
206
207
208def qualify_derived_table_outputs(expression: exp.Expression) -> exp.Expression:
209    """Ensures all (unnamed) output columns are aliased for CTEs and Subqueries."""
210    alias = expression.args.get("alias")
211
212    if (
213        isinstance(expression, (exp.CTE, exp.Subquery))
214        and isinstance(alias, exp.TableAlias)
215        and not alias.columns
216    ):
217        from sqlglot.optimizer.qualify_columns import qualify_outputs
218
219        # We keep track of the unaliased column projection indexes instead of the expressions
220        # themselves, because the latter are going to be replaced by new nodes when the aliases
221        # are added and hence we won't be able to reach these newly added Alias parents
222        subqueryable = expression.this
223        unaliased_column_indexes = (
224            i
225            for i, c in enumerate(subqueryable.selects)
226            if isinstance(c, exp.Column) and not c.alias
227        )
228
229        qualify_outputs(subqueryable)
230
231        # Preserve the quoting information of columns for newly added Alias nodes
232        subqueryable_selects = subqueryable.selects
233        for select_index in unaliased_column_indexes:
234            alias = subqueryable_selects[select_index]
235            column = alias.this
236            if isinstance(column.this, exp.Identifier):
237                alias.args["alias"].set("quoted", column.this.quoted)
238
239    return expression
240
241
242# https://learn.microsoft.com/en-us/sql/t-sql/functions/datetimefromparts-transact-sql?view=sql-server-ver16#syntax
243def _parse_datetimefromparts(args: t.List) -> exp.TimestampFromParts:
244    return exp.TimestampFromParts(
245        year=seq_get(args, 0),
246        month=seq_get(args, 1),
247        day=seq_get(args, 2),
248        hour=seq_get(args, 3),
249        min=seq_get(args, 4),
250        sec=seq_get(args, 5),
251        milli=seq_get(args, 6),
252    )
253
254
255# https://learn.microsoft.com/en-us/sql/t-sql/functions/timefromparts-transact-sql?view=sql-server-ver16#syntax
256def _parse_timefromparts(args: t.List) -> exp.TimeFromParts:
257    return exp.TimeFromParts(
258        hour=seq_get(args, 0),
259        min=seq_get(args, 1),
260        sec=seq_get(args, 2),
261        fractions=seq_get(args, 3),
262        precision=seq_get(args, 4),
263    )
264
265
266class TSQL(Dialect):
267    NORMALIZATION_STRATEGY = NormalizationStrategy.CASE_INSENSITIVE
268    TIME_FORMAT = "'yyyy-mm-dd hh:mm:ss'"
269    SUPPORTS_SEMI_ANTI_JOIN = False
270    LOG_BASE_FIRST = False
271    TYPED_DIVISION = True
272    CONCAT_COALESCE = True
273
274    TIME_MAPPING = {
275        "year": "%Y",
276        "dayofyear": "%j",
277        "day": "%d",
278        "dy": "%d",
279        "y": "%Y",
280        "week": "%W",
281        "ww": "%W",
282        "wk": "%W",
283        "hour": "%h",
284        "hh": "%I",
285        "minute": "%M",
286        "mi": "%M",
287        "n": "%M",
288        "second": "%S",
289        "ss": "%S",
290        "s": "%-S",
291        "millisecond": "%f",
292        "ms": "%f",
293        "weekday": "%W",
294        "dw": "%W",
295        "month": "%m",
296        "mm": "%M",
297        "m": "%-M",
298        "Y": "%Y",
299        "YYYY": "%Y",
300        "YY": "%y",
301        "MMMM": "%B",
302        "MMM": "%b",
303        "MM": "%m",
304        "M": "%-m",
305        "dddd": "%A",
306        "dd": "%d",
307        "d": "%-d",
308        "HH": "%H",
309        "H": "%-H",
310        "h": "%-I",
311        "S": "%f",
312        "yyyy": "%Y",
313        "yy": "%y",
314    }
315
316    CONVERT_FORMAT_MAPPING = {
317        "0": "%b %d %Y %-I:%M%p",
318        "1": "%m/%d/%y",
319        "2": "%y.%m.%d",
320        "3": "%d/%m/%y",
321        "4": "%d.%m.%y",
322        "5": "%d-%m-%y",
323        "6": "%d %b %y",
324        "7": "%b %d, %y",
325        "8": "%H:%M:%S",
326        "9": "%b %d %Y %-I:%M:%S:%f%p",
327        "10": "mm-dd-yy",
328        "11": "yy/mm/dd",
329        "12": "yymmdd",
330        "13": "%d %b %Y %H:%M:ss:%f",
331        "14": "%H:%M:%S:%f",
332        "20": "%Y-%m-%d %H:%M:%S",
333        "21": "%Y-%m-%d %H:%M:%S.%f",
334        "22": "%m/%d/%y %-I:%M:%S %p",
335        "23": "%Y-%m-%d",
336        "24": "%H:%M:%S",
337        "25": "%Y-%m-%d %H:%M:%S.%f",
338        "100": "%b %d %Y %-I:%M%p",
339        "101": "%m/%d/%Y",
340        "102": "%Y.%m.%d",
341        "103": "%d/%m/%Y",
342        "104": "%d.%m.%Y",
343        "105": "%d-%m-%Y",
344        "106": "%d %b %Y",
345        "107": "%b %d, %Y",
346        "108": "%H:%M:%S",
347        "109": "%b %d %Y %-I:%M:%S:%f%p",
348        "110": "%m-%d-%Y",
349        "111": "%Y/%m/%d",
350        "112": "%Y%m%d",
351        "113": "%d %b %Y %H:%M:%S:%f",
352        "114": "%H:%M:%S:%f",
353        "120": "%Y-%m-%d %H:%M:%S",
354        "121": "%Y-%m-%d %H:%M:%S.%f",
355    }
356
357    FORMAT_TIME_MAPPING = {
358        "y": "%B %Y",
359        "d": "%m/%d/%Y",
360        "H": "%-H",
361        "h": "%-I",
362        "s": "%Y-%m-%d %H:%M:%S",
363        "D": "%A,%B,%Y",
364        "f": "%A,%B,%Y %-I:%M %p",
365        "F": "%A,%B,%Y %-I:%M:%S %p",
366        "g": "%m/%d/%Y %-I:%M %p",
367        "G": "%m/%d/%Y %-I:%M:%S %p",
368        "M": "%B %-d",
369        "m": "%B %-d",
370        "O": "%Y-%m-%dT%H:%M:%S",
371        "u": "%Y-%M-%D %H:%M:%S%z",
372        "U": "%A, %B %D, %Y %H:%M:%S%z",
373        "T": "%-I:%M:%S %p",
374        "t": "%-I:%M",
375        "Y": "%a %Y",
376    }
377
378    class Tokenizer(tokens.Tokenizer):
379        IDENTIFIERS = ['"', ("[", "]")]
380        QUOTES = ["'", '"']
381        HEX_STRINGS = [("0x", ""), ("0X", "")]
382        VAR_SINGLE_TOKENS = {"@", "$", "#"}
383
384        KEYWORDS = {
385            **tokens.Tokenizer.KEYWORDS,
386            "DATETIME2": TokenType.DATETIME,
387            "DATETIMEOFFSET": TokenType.TIMESTAMPTZ,
388            "DECLARE": TokenType.COMMAND,
389            "IMAGE": TokenType.IMAGE,
390            "MONEY": TokenType.MONEY,
391            "NTEXT": TokenType.TEXT,
392            "NVARCHAR(MAX)": TokenType.TEXT,
393            "PRINT": TokenType.COMMAND,
394            "PROC": TokenType.PROCEDURE,
395            "REAL": TokenType.FLOAT,
396            "ROWVERSION": TokenType.ROWVERSION,
397            "SMALLDATETIME": TokenType.DATETIME,
398            "SMALLMONEY": TokenType.SMALLMONEY,
399            "SQL_VARIANT": TokenType.VARIANT,
400            "TOP": TokenType.TOP,
401            "UNIQUEIDENTIFIER": TokenType.UNIQUEIDENTIFIER,
402            "UPDATE STATISTICS": TokenType.COMMAND,
403            "VARCHAR(MAX)": TokenType.TEXT,
404            "XML": TokenType.XML,
405            "OUTPUT": TokenType.RETURNING,
406            "SYSTEM_USER": TokenType.CURRENT_USER,
407            "FOR SYSTEM_TIME": TokenType.TIMESTAMP_SNAPSHOT,
408        }
409
410    class Parser(parser.Parser):
411        SET_REQUIRES_ASSIGNMENT_DELIMITER = False
412
413        FUNCTIONS = {
414            **parser.Parser.FUNCTIONS,
415            "CHARINDEX": lambda args: exp.StrPosition(
416                this=seq_get(args, 1),
417                substr=seq_get(args, 0),
418                position=seq_get(args, 2),
419            ),
420            "DATEADD": parse_date_delta(exp.DateAdd, unit_mapping=DATE_DELTA_INTERVAL),
421            "DATEDIFF": _parse_date_delta(exp.DateDiff, unit_mapping=DATE_DELTA_INTERVAL),
422            "DATENAME": _format_time_lambda(exp.TimeToStr, full_format_mapping=True),
423            "DATEPART": _format_time_lambda(exp.TimeToStr),
424            "DATETIMEFROMPARTS": _parse_datetimefromparts,
425            "EOMONTH": _parse_eomonth,
426            "FORMAT": _parse_format,
427            "GETDATE": exp.CurrentTimestamp.from_arg_list,
428            "HASHBYTES": _parse_hashbytes,
429            "IIF": exp.If.from_arg_list,
430            "ISNULL": exp.Coalesce.from_arg_list,
431            "JSON_VALUE": exp.JSONExtractScalar.from_arg_list,
432            "LEN": exp.Length.from_arg_list,
433            "REPLICATE": exp.Repeat.from_arg_list,
434            "SQUARE": lambda args: exp.Pow(this=seq_get(args, 0), expression=exp.Literal.number(2)),
435            "SYSDATETIME": exp.CurrentTimestamp.from_arg_list,
436            "SUSER_NAME": exp.CurrentUser.from_arg_list,
437            "SUSER_SNAME": exp.CurrentUser.from_arg_list,
438            "SYSTEM_USER": exp.CurrentUser.from_arg_list,
439            "TIMEFROMPARTS": _parse_timefromparts,
440        }
441
442        JOIN_HINTS = {
443            "LOOP",
444            "HASH",
445            "MERGE",
446            "REMOTE",
447        }
448
449        VAR_LENGTH_DATATYPES = {
450            DataType.Type.NVARCHAR,
451            DataType.Type.VARCHAR,
452            DataType.Type.CHAR,
453            DataType.Type.NCHAR,
454        }
455
456        RETURNS_TABLE_TOKENS = parser.Parser.ID_VAR_TOKENS - {
457            TokenType.TABLE,
458            *parser.Parser.TYPE_TOKENS,
459        }
460
461        STATEMENT_PARSERS = {
462            **parser.Parser.STATEMENT_PARSERS,
463            TokenType.END: lambda self: self._parse_command(),
464        }
465
466        LOG_DEFAULTS_TO_LN = True
467
468        ALTER_TABLE_ADD_REQUIRED_FOR_EACH_COLUMN = False
469
470        def _parse_projections(self) -> t.List[exp.Expression]:
471            """
472            T-SQL supports the syntax alias = expression in the SELECT's projection list,
473            so we transform all parsed Selects to convert their EQ projections into Aliases.
474
475            See: https://learn.microsoft.com/en-us/sql/t-sql/queries/select-clause-transact-sql?view=sql-server-ver16#syntax
476            """
477            return [
478                exp.alias_(projection.expression, projection.this.this, copy=False)
479                if isinstance(projection, exp.EQ) and isinstance(projection.this, exp.Column)
480                else projection
481                for projection in super()._parse_projections()
482            ]
483
484        def _parse_commit_or_rollback(self) -> exp.Commit | exp.Rollback:
485            """Applies to SQL Server and Azure SQL Database
486            COMMIT [ { TRAN | TRANSACTION }
487                [ transaction_name | @tran_name_variable ] ]
488                [ WITH ( DELAYED_DURABILITY = { OFF | ON } ) ]
489
490            ROLLBACK { TRAN | TRANSACTION }
491                [ transaction_name | @tran_name_variable
492                | savepoint_name | @savepoint_variable ]
493            """
494            rollback = self._prev.token_type == TokenType.ROLLBACK
495
496            self._match_texts(("TRAN", "TRANSACTION"))
497            this = self._parse_id_var()
498
499            if rollback:
500                return self.expression(exp.Rollback, this=this)
501
502            durability = None
503            if self._match_pair(TokenType.WITH, TokenType.L_PAREN):
504                self._match_text_seq("DELAYED_DURABILITY")
505                self._match(TokenType.EQ)
506
507                if self._match_text_seq("OFF"):
508                    durability = False
509                else:
510                    self._match(TokenType.ON)
511                    durability = True
512
513                self._match_r_paren()
514
515            return self.expression(exp.Commit, this=this, durability=durability)
516
517        def _parse_transaction(self) -> exp.Transaction | exp.Command:
518            """Applies to SQL Server and Azure SQL Database
519            BEGIN { TRAN | TRANSACTION }
520            [ { transaction_name | @tran_name_variable }
521            [ WITH MARK [ 'description' ] ]
522            ]
523            """
524            if self._match_texts(("TRAN", "TRANSACTION")):
525                transaction = self.expression(exp.Transaction, this=self._parse_id_var())
526                if self._match_text_seq("WITH", "MARK"):
527                    transaction.set("mark", self._parse_string())
528
529                return transaction
530
531            return self._parse_as_command(self._prev)
532
533        def _parse_returns(self) -> exp.ReturnsProperty:
534            table = self._parse_id_var(any_token=False, tokens=self.RETURNS_TABLE_TOKENS)
535            returns = super()._parse_returns()
536            returns.set("table", table)
537            return returns
538
539        def _parse_convert(
540            self, strict: bool, safe: t.Optional[bool] = None
541        ) -> t.Optional[exp.Expression]:
542            to = self._parse_types()
543            self._match(TokenType.COMMA)
544            this = self._parse_conjunction()
545
546            if not to or not this:
547                return None
548
549            # Retrieve length of datatype and override to default if not specified
550            if seq_get(to.expressions, 0) is None and to.this in self.VAR_LENGTH_DATATYPES:
551                to = exp.DataType.build(to.this, expressions=[exp.Literal.number(30)], nested=False)
552
553            # Check whether a conversion with format is applicable
554            if self._match(TokenType.COMMA):
555                format_val = self._parse_number()
556                format_val_name = format_val.name if format_val else ""
557
558                if format_val_name not in TSQL.CONVERT_FORMAT_MAPPING:
559                    raise ValueError(
560                        f"CONVERT function at T-SQL does not support format style {format_val_name}"
561                    )
562
563                format_norm = exp.Literal.string(TSQL.CONVERT_FORMAT_MAPPING[format_val_name])
564
565                # Check whether the convert entails a string to date format
566                if to.this == DataType.Type.DATE:
567                    return self.expression(exp.StrToDate, this=this, format=format_norm)
568                # Check whether the convert entails a string to datetime format
569                elif to.this == DataType.Type.DATETIME:
570                    return self.expression(exp.StrToTime, this=this, format=format_norm)
571                # Check whether the convert entails a date to string format
572                elif to.this in self.VAR_LENGTH_DATATYPES:
573                    return self.expression(
574                        exp.Cast if strict else exp.TryCast,
575                        to=to,
576                        this=self.expression(exp.TimeToStr, this=this, format=format_norm),
577                        safe=safe,
578                    )
579                elif to.this == DataType.Type.TEXT:
580                    return self.expression(exp.TimeToStr, this=this, format=format_norm)
581
582            # Entails a simple cast without any format requirement
583            return self.expression(exp.Cast if strict else exp.TryCast, this=this, to=to, safe=safe)
584
585        def _parse_user_defined_function(
586            self, kind: t.Optional[TokenType] = None
587        ) -> t.Optional[exp.Expression]:
588            this = super()._parse_user_defined_function(kind=kind)
589
590            if (
591                kind == TokenType.FUNCTION
592                or isinstance(this, exp.UserDefinedFunction)
593                or self._match(TokenType.ALIAS, advance=False)
594            ):
595                return this
596
597            expressions = self._parse_csv(self._parse_function_parameter)
598            return self.expression(exp.UserDefinedFunction, this=this, expressions=expressions)
599
600        def _parse_id_var(
601            self,
602            any_token: bool = True,
603            tokens: t.Optional[t.Collection[TokenType]] = None,
604        ) -> t.Optional[exp.Expression]:
605            is_temporary = self._match(TokenType.HASH)
606            is_global = is_temporary and self._match(TokenType.HASH)
607
608            this = super()._parse_id_var(any_token=any_token, tokens=tokens)
609            if this:
610                if is_global:
611                    this.set("global", True)
612                elif is_temporary:
613                    this.set("temporary", True)
614
615            return this
616
617        def _parse_create(self) -> exp.Create | exp.Command:
618            create = super()._parse_create()
619
620            if isinstance(create, exp.Create):
621                table = create.this.this if isinstance(create.this, exp.Schema) else create.this
622                if isinstance(table, exp.Table) and table.this.args.get("temporary"):
623                    if not create.args.get("properties"):
624                        create.set("properties", exp.Properties(expressions=[]))
625
626                    create.args["properties"].append("expressions", exp.TemporaryProperty())
627
628            return create
629
630        def _parse_if(self) -> t.Optional[exp.Expression]:
631            index = self._index
632
633            if self._match_text_seq("OBJECT_ID"):
634                self._parse_wrapped_csv(self._parse_string)
635                if self._match_text_seq("IS", "NOT", "NULL") and self._match(TokenType.DROP):
636                    return self._parse_drop(exists=True)
637                self._retreat(index)
638
639            return super()._parse_if()
640
641        def _parse_unique(self) -> exp.UniqueColumnConstraint:
642            if self._match_texts(("CLUSTERED", "NONCLUSTERED")):
643                this = self.CONSTRAINT_PARSERS[self._prev.text.upper()](self)
644            else:
645                this = self._parse_schema(self._parse_id_var(any_token=False))
646
647            return self.expression(exp.UniqueColumnConstraint, this=this)
648
649    class Generator(generator.Generator):
650        LIMIT_IS_TOP = True
651        QUERY_HINTS = False
652        RETURNING_END = False
653        NVL2_SUPPORTED = False
654        ALTER_TABLE_INCLUDE_COLUMN_KEYWORD = False
655        LIMIT_FETCH = "FETCH"
656        COMPUTED_COLUMN_WITH_TYPE = False
657        CTE_RECURSIVE_KEYWORD_REQUIRED = False
658        ENSURE_BOOLS = True
659        NULL_ORDERING_SUPPORTED = False
660        SUPPORTS_SINGLE_ARG_CONCAT = False
661        TABLESAMPLE_SEED_KEYWORD = "REPEATABLE"
662
663        EXPRESSIONS_WITHOUT_NESTED_CTES = {
664            exp.Delete,
665            exp.Insert,
666            exp.Merge,
667            exp.Select,
668            exp.Subquery,
669            exp.Union,
670            exp.Update,
671        }
672
673        TYPE_MAPPING = {
674            **generator.Generator.TYPE_MAPPING,
675            exp.DataType.Type.BOOLEAN: "BIT",
676            exp.DataType.Type.DECIMAL: "NUMERIC",
677            exp.DataType.Type.DATETIME: "DATETIME2",
678            exp.DataType.Type.DOUBLE: "FLOAT",
679            exp.DataType.Type.INT: "INTEGER",
680            exp.DataType.Type.TEXT: "VARCHAR(MAX)",
681            exp.DataType.Type.TIMESTAMP: "DATETIME2",
682            exp.DataType.Type.TIMESTAMPTZ: "DATETIMEOFFSET",
683            exp.DataType.Type.VARIANT: "SQL_VARIANT",
684        }
685
686        TRANSFORMS = {
687            **generator.Generator.TRANSFORMS,
688            exp.AnyValue: any_value_to_max_sql,
689            exp.AutoIncrementColumnConstraint: lambda *_: "IDENTITY",
690            exp.DateAdd: date_delta_sql("DATEADD"),
691            exp.DateDiff: date_delta_sql("DATEDIFF"),
692            exp.CTE: transforms.preprocess([qualify_derived_table_outputs]),
693            exp.CurrentDate: rename_func("GETDATE"),
694            exp.CurrentTimestamp: rename_func("GETDATE"),
695            exp.Extract: rename_func("DATEPART"),
696            exp.GeneratedAsIdentityColumnConstraint: generatedasidentitycolumnconstraint_sql,
697            exp.GetPath: path_to_jsonpath("JSON_VALUE"),
698            exp.GroupConcat: _string_agg_sql,
699            exp.If: rename_func("IIF"),
700            exp.LastDay: lambda self, e: self.func("EOMONTH", e.this),
701            exp.Length: rename_func("LEN"),
702            exp.Max: max_or_greatest,
703            exp.MD5: lambda self, e: self.func("HASHBYTES", exp.Literal.string("MD5"), e.this),
704            exp.Min: min_or_least,
705            exp.NumberToStr: _format_sql,
706            exp.ParseJSON: lambda self, e: self.sql(e, "this"),
707            exp.Select: transforms.preprocess(
708                [
709                    transforms.eliminate_distinct_on,
710                    transforms.eliminate_semi_and_anti_joins,
711                    transforms.eliminate_qualify,
712                ]
713            ),
714            exp.Subquery: transforms.preprocess([qualify_derived_table_outputs]),
715            exp.SHA: lambda self, e: self.func("HASHBYTES", exp.Literal.string("SHA1"), e.this),
716            exp.SHA2: lambda self, e: self.func(
717                "HASHBYTES", exp.Literal.string(f"SHA2_{e.args.get('length', 256)}"), e.this
718            ),
719            exp.TemporaryProperty: lambda self, e: "",
720            exp.TimeStrToTime: timestrtotime_sql,
721            exp.TimeToStr: _format_sql,
722            exp.TsOrDsAdd: date_delta_sql("DATEADD", cast=True),
723            exp.TsOrDsDiff: date_delta_sql("DATEDIFF"),
724        }
725
726        TRANSFORMS.pop(exp.ReturnsProperty)
727
728        PROPERTIES_LOCATION = {
729            **generator.Generator.PROPERTIES_LOCATION,
730            exp.VolatileProperty: exp.Properties.Location.UNSUPPORTED,
731        }
732
733        def lateral_op(self, expression: exp.Lateral) -> str:
734            cross_apply = expression.args.get("cross_apply")
735            if cross_apply is True:
736                return "CROSS APPLY"
737            if cross_apply is False:
738                return "OUTER APPLY"
739
740            # TODO: perhaps we can check if the parent is a Join and transpile it appropriately
741            self.unsupported("LATERAL clause is not supported.")
742            return "LATERAL"
743
744        def timefromparts_sql(self, expression: exp.TimeFromParts) -> str:
745            nano = expression.args.get("nano")
746            if nano is not None:
747                nano.pop()
748                self.unsupported("Specifying nanoseconds is not supported in TIMEFROMPARTS.")
749
750            if expression.args.get("fractions") is None:
751                expression.set("fractions", exp.Literal.number(0))
752            if expression.args.get("precision") is None:
753                expression.set("precision", exp.Literal.number(0))
754
755            return rename_func("TIMEFROMPARTS")(self, expression)
756
757        def timestampfromparts_sql(self, expression: exp.TimestampFromParts) -> str:
758            zone = expression.args.get("zone")
759            if zone is not None:
760                zone.pop()
761                self.unsupported("Time zone is not supported in DATETIMEFROMPARTS.")
762
763            nano = expression.args.get("nano")
764            if nano is not None:
765                nano.pop()
766                self.unsupported("Specifying nanoseconds is not supported in DATETIMEFROMPARTS.")
767
768            if expression.args.get("milli") is None:
769                expression.set("milli", exp.Literal.number(0))
770
771            return rename_func("DATETIMEFROMPARTS")(self, expression)
772
773        def set_operation(self, expression: exp.Union, op: str) -> str:
774            limit = expression.args.get("limit")
775            if limit:
776                return self.sql(expression.limit(limit.pop(), copy=False))
777
778            return super().set_operation(expression, op)
779
780        def setitem_sql(self, expression: exp.SetItem) -> str:
781            this = expression.this
782            if isinstance(this, exp.EQ) and not isinstance(this.left, exp.Parameter):
783                # T-SQL does not use '=' in SET command, except when the LHS is a variable.
784                return f"{self.sql(this.left)} {self.sql(this.right)}"
785
786            return super().setitem_sql(expression)
787
788        def boolean_sql(self, expression: exp.Boolean) -> str:
789            if type(expression.parent) in BIT_TYPES:
790                return "1" if expression.this else "0"
791
792            return "(1 = 1)" if expression.this else "(1 = 0)"
793
794        def is_sql(self, expression: exp.Is) -> str:
795            if isinstance(expression.expression, exp.Boolean):
796                return self.binary(expression, "=")
797            return self.binary(expression, "IS")
798
799        def createable_sql(self, expression: exp.Create, locations: t.DefaultDict) -> str:
800            sql = self.sql(expression, "this")
801            properties = expression.args.get("properties")
802
803            if sql[:1] != "#" and any(
804                isinstance(prop, exp.TemporaryProperty)
805                for prop in (properties.expressions if properties else [])
806            ):
807                sql = f"#{sql}"
808
809            return sql
810
811        def create_sql(self, expression: exp.Create) -> str:
812            kind = self.sql(expression, "kind").upper()
813            exists = expression.args.pop("exists", None)
814            sql = super().create_sql(expression)
815
816            table = expression.find(exp.Table)
817
818            # Convert CTAS statement to SELECT .. INTO ..
819            if kind == "TABLE" and expression.expression:
820                ctas_with = expression.expression.args.get("with")
821                if ctas_with:
822                    ctas_with = ctas_with.pop()
823
824                subquery = expression.expression
825                if isinstance(subquery, exp.Subqueryable):
826                    subquery = subquery.subquery()
827
828                select_into = exp.select("*").from_(exp.alias_(subquery, "temp", table=True))
829                select_into.set("into", exp.Into(this=table))
830                select_into.set("with", ctas_with)
831
832                sql = self.sql(select_into)
833
834            if exists:
835                identifier = self.sql(exp.Literal.string(exp.table_name(table) if table else ""))
836                sql = self.sql(exp.Literal.string(sql))
837                if kind == "SCHEMA":
838                    sql = f"""IF NOT EXISTS (SELECT * FROM information_schema.schemata WHERE schema_name = {identifier}) EXEC({sql})"""
839                elif kind == "TABLE":
840                    assert table
841                    where = exp.and_(
842                        exp.column("table_name").eq(table.name),
843                        exp.column("table_schema").eq(table.db) if table.db else None,
844                        exp.column("table_catalog").eq(table.catalog) if table.catalog else None,
845                    )
846                    sql = f"""IF NOT EXISTS (SELECT * FROM information_schema.tables WHERE {where}) EXEC({sql})"""
847                elif kind == "INDEX":
848                    index = self.sql(exp.Literal.string(expression.this.text("this")))
849                    sql = f"""IF NOT EXISTS (SELECT * FROM sys.indexes WHERE object_id = object_id({identifier}) AND name = {index}) EXEC({sql})"""
850            elif expression.args.get("replace"):
851                sql = sql.replace("CREATE OR REPLACE ", "CREATE OR ALTER ", 1)
852
853            return self.prepend_ctes(expression, sql)
854
855        def offset_sql(self, expression: exp.Offset) -> str:
856            return f"{super().offset_sql(expression)} ROWS"
857
858        def version_sql(self, expression: exp.Version) -> str:
859            name = "SYSTEM_TIME" if expression.name == "TIMESTAMP" else expression.name
860            this = f"FOR {name}"
861            expr = expression.expression
862            kind = expression.text("kind")
863            if kind in ("FROM", "BETWEEN"):
864                args = expr.expressions
865                sep = "TO" if kind == "FROM" else "AND"
866                expr_sql = f"{self.sql(seq_get(args, 0))} {sep} {self.sql(seq_get(args, 1))}"
867            else:
868                expr_sql = self.sql(expr)
869
870            expr_sql = f" {expr_sql}" if expr_sql else ""
871            return f"{this} {kind}{expr_sql}"
872
873        def returnsproperty_sql(self, expression: exp.ReturnsProperty) -> str:
874            table = expression.args.get("table")
875            table = f"{table} " if table else ""
876            return f"RETURNS {table}{self.sql(expression, 'this')}"
877
878        def returning_sql(self, expression: exp.Returning) -> str:
879            into = self.sql(expression, "into")
880            into = self.seg(f"INTO {into}") if into else ""
881            return f"{self.seg('OUTPUT')} {self.expressions(expression, flat=True)}{into}"
882
883        def transaction_sql(self, expression: exp.Transaction) -> str:
884            this = self.sql(expression, "this")
885            this = f" {this}" if this else ""
886            mark = self.sql(expression, "mark")
887            mark = f" WITH MARK {mark}" if mark else ""
888            return f"BEGIN TRANSACTION{this}{mark}"
889
890        def commit_sql(self, expression: exp.Commit) -> str:
891            this = self.sql(expression, "this")
892            this = f" {this}" if this else ""
893            durability = expression.args.get("durability")
894            durability = (
895                f" WITH (DELAYED_DURABILITY = {'ON' if durability else 'OFF'})"
896                if durability is not None
897                else ""
898            )
899            return f"COMMIT TRANSACTION{this}{durability}"
900
901        def rollback_sql(self, expression: exp.Rollback) -> str:
902            this = self.sql(expression, "this")
903            this = f" {this}" if this else ""
904            return f"ROLLBACK TRANSACTION{this}"
905
906        def identifier_sql(self, expression: exp.Identifier) -> str:
907            identifier = super().identifier_sql(expression)
908
909            if expression.args.get("global"):
910                identifier = f"##{identifier}"
911            elif expression.args.get("temporary"):
912                identifier = f"#{identifier}"
913
914            return identifier
915
916        def constraint_sql(self, expression: exp.Constraint) -> str:
917            this = self.sql(expression, "this")
918            expressions = self.expressions(expression, flat=True, sep=" ")
919            return f"CONSTRAINT {this} {expressions}"
FULL_FORMAT_TIME_MAPPING = {'weekday': '%A', 'dw': '%A', 'w': '%A', 'month': '%B', 'mm': '%B', 'm': '%B'}
DATE_DELTA_INTERVAL = {'year': 'year', 'yyyy': 'year', 'yy': 'year', 'quarter': 'quarter', 'qq': 'quarter', 'q': 'quarter', 'month': 'month', 'mm': 'month', 'm': 'month', 'week': 'week', 'ww': 'week', 'wk': 'week', 'day': 'day', 'dd': 'day', 'd': 'day'}
DATE_FMT_RE = re.compile('([dD]{1,2})|([mM]{1,2})|([yY]{1,4})|([hH]{1,2})|([sS]{1,2})')
TRANSPILE_SAFE_NUMBER_FMT = {'N', 'C'}
DEFAULT_START_DATE = datetime.date(1900, 1, 1)
DATEPART_ONLY_FORMATS = {'HOUR', 'QUARTER', 'DW'}
def qualify_derived_table_outputs( expression: sqlglot.expressions.Expression) -> sqlglot.expressions.Expression:
209def qualify_derived_table_outputs(expression: exp.Expression) -> exp.Expression:
210    """Ensures all (unnamed) output columns are aliased for CTEs and Subqueries."""
211    alias = expression.args.get("alias")
212
213    if (
214        isinstance(expression, (exp.CTE, exp.Subquery))
215        and isinstance(alias, exp.TableAlias)
216        and not alias.columns
217    ):
218        from sqlglot.optimizer.qualify_columns import qualify_outputs
219
220        # We keep track of the unaliased column projection indexes instead of the expressions
221        # themselves, because the latter are going to be replaced by new nodes when the aliases
222        # are added and hence we won't be able to reach these newly added Alias parents
223        subqueryable = expression.this
224        unaliased_column_indexes = (
225            i
226            for i, c in enumerate(subqueryable.selects)
227            if isinstance(c, exp.Column) and not c.alias
228        )
229
230        qualify_outputs(subqueryable)
231
232        # Preserve the quoting information of columns for newly added Alias nodes
233        subqueryable_selects = subqueryable.selects
234        for select_index in unaliased_column_indexes:
235            alias = subqueryable_selects[select_index]
236            column = alias.this
237            if isinstance(column.this, exp.Identifier):
238                alias.args["alias"].set("quoted", column.this.quoted)
239
240    return expression

Ensures all (unnamed) output columns are aliased for CTEs and Subqueries.

class TSQL(sqlglot.dialects.dialect.Dialect):
267class TSQL(Dialect):
268    NORMALIZATION_STRATEGY = NormalizationStrategy.CASE_INSENSITIVE
269    TIME_FORMAT = "'yyyy-mm-dd hh:mm:ss'"
270    SUPPORTS_SEMI_ANTI_JOIN = False
271    LOG_BASE_FIRST = False
272    TYPED_DIVISION = True
273    CONCAT_COALESCE = True
274
275    TIME_MAPPING = {
276        "year": "%Y",
277        "dayofyear": "%j",
278        "day": "%d",
279        "dy": "%d",
280        "y": "%Y",
281        "week": "%W",
282        "ww": "%W",
283        "wk": "%W",
284        "hour": "%h",
285        "hh": "%I",
286        "minute": "%M",
287        "mi": "%M",
288        "n": "%M",
289        "second": "%S",
290        "ss": "%S",
291        "s": "%-S",
292        "millisecond": "%f",
293        "ms": "%f",
294        "weekday": "%W",
295        "dw": "%W",
296        "month": "%m",
297        "mm": "%M",
298        "m": "%-M",
299        "Y": "%Y",
300        "YYYY": "%Y",
301        "YY": "%y",
302        "MMMM": "%B",
303        "MMM": "%b",
304        "MM": "%m",
305        "M": "%-m",
306        "dddd": "%A",
307        "dd": "%d",
308        "d": "%-d",
309        "HH": "%H",
310        "H": "%-H",
311        "h": "%-I",
312        "S": "%f",
313        "yyyy": "%Y",
314        "yy": "%y",
315    }
316
317    CONVERT_FORMAT_MAPPING = {
318        "0": "%b %d %Y %-I:%M%p",
319        "1": "%m/%d/%y",
320        "2": "%y.%m.%d",
321        "3": "%d/%m/%y",
322        "4": "%d.%m.%y",
323        "5": "%d-%m-%y",
324        "6": "%d %b %y",
325        "7": "%b %d, %y",
326        "8": "%H:%M:%S",
327        "9": "%b %d %Y %-I:%M:%S:%f%p",
328        "10": "mm-dd-yy",
329        "11": "yy/mm/dd",
330        "12": "yymmdd",
331        "13": "%d %b %Y %H:%M:ss:%f",
332        "14": "%H:%M:%S:%f",
333        "20": "%Y-%m-%d %H:%M:%S",
334        "21": "%Y-%m-%d %H:%M:%S.%f",
335        "22": "%m/%d/%y %-I:%M:%S %p",
336        "23": "%Y-%m-%d",
337        "24": "%H:%M:%S",
338        "25": "%Y-%m-%d %H:%M:%S.%f",
339        "100": "%b %d %Y %-I:%M%p",
340        "101": "%m/%d/%Y",
341        "102": "%Y.%m.%d",
342        "103": "%d/%m/%Y",
343        "104": "%d.%m.%Y",
344        "105": "%d-%m-%Y",
345        "106": "%d %b %Y",
346        "107": "%b %d, %Y",
347        "108": "%H:%M:%S",
348        "109": "%b %d %Y %-I:%M:%S:%f%p",
349        "110": "%m-%d-%Y",
350        "111": "%Y/%m/%d",
351        "112": "%Y%m%d",
352        "113": "%d %b %Y %H:%M:%S:%f",
353        "114": "%H:%M:%S:%f",
354        "120": "%Y-%m-%d %H:%M:%S",
355        "121": "%Y-%m-%d %H:%M:%S.%f",
356    }
357
358    FORMAT_TIME_MAPPING = {
359        "y": "%B %Y",
360        "d": "%m/%d/%Y",
361        "H": "%-H",
362        "h": "%-I",
363        "s": "%Y-%m-%d %H:%M:%S",
364        "D": "%A,%B,%Y",
365        "f": "%A,%B,%Y %-I:%M %p",
366        "F": "%A,%B,%Y %-I:%M:%S %p",
367        "g": "%m/%d/%Y %-I:%M %p",
368        "G": "%m/%d/%Y %-I:%M:%S %p",
369        "M": "%B %-d",
370        "m": "%B %-d",
371        "O": "%Y-%m-%dT%H:%M:%S",
372        "u": "%Y-%M-%D %H:%M:%S%z",
373        "U": "%A, %B %D, %Y %H:%M:%S%z",
374        "T": "%-I:%M:%S %p",
375        "t": "%-I:%M",
376        "Y": "%a %Y",
377    }
378
379    class Tokenizer(tokens.Tokenizer):
380        IDENTIFIERS = ['"', ("[", "]")]
381        QUOTES = ["'", '"']
382        HEX_STRINGS = [("0x", ""), ("0X", "")]
383        VAR_SINGLE_TOKENS = {"@", "$", "#"}
384
385        KEYWORDS = {
386            **tokens.Tokenizer.KEYWORDS,
387            "DATETIME2": TokenType.DATETIME,
388            "DATETIMEOFFSET": TokenType.TIMESTAMPTZ,
389            "DECLARE": TokenType.COMMAND,
390            "IMAGE": TokenType.IMAGE,
391            "MONEY": TokenType.MONEY,
392            "NTEXT": TokenType.TEXT,
393            "NVARCHAR(MAX)": TokenType.TEXT,
394            "PRINT": TokenType.COMMAND,
395            "PROC": TokenType.PROCEDURE,
396            "REAL": TokenType.FLOAT,
397            "ROWVERSION": TokenType.ROWVERSION,
398            "SMALLDATETIME": TokenType.DATETIME,
399            "SMALLMONEY": TokenType.SMALLMONEY,
400            "SQL_VARIANT": TokenType.VARIANT,
401            "TOP": TokenType.TOP,
402            "UNIQUEIDENTIFIER": TokenType.UNIQUEIDENTIFIER,
403            "UPDATE STATISTICS": TokenType.COMMAND,
404            "VARCHAR(MAX)": TokenType.TEXT,
405            "XML": TokenType.XML,
406            "OUTPUT": TokenType.RETURNING,
407            "SYSTEM_USER": TokenType.CURRENT_USER,
408            "FOR SYSTEM_TIME": TokenType.TIMESTAMP_SNAPSHOT,
409        }
410
411    class Parser(parser.Parser):
412        SET_REQUIRES_ASSIGNMENT_DELIMITER = False
413
414        FUNCTIONS = {
415            **parser.Parser.FUNCTIONS,
416            "CHARINDEX": lambda args: exp.StrPosition(
417                this=seq_get(args, 1),
418                substr=seq_get(args, 0),
419                position=seq_get(args, 2),
420            ),
421            "DATEADD": parse_date_delta(exp.DateAdd, unit_mapping=DATE_DELTA_INTERVAL),
422            "DATEDIFF": _parse_date_delta(exp.DateDiff, unit_mapping=DATE_DELTA_INTERVAL),
423            "DATENAME": _format_time_lambda(exp.TimeToStr, full_format_mapping=True),
424            "DATEPART": _format_time_lambda(exp.TimeToStr),
425            "DATETIMEFROMPARTS": _parse_datetimefromparts,
426            "EOMONTH": _parse_eomonth,
427            "FORMAT": _parse_format,
428            "GETDATE": exp.CurrentTimestamp.from_arg_list,
429            "HASHBYTES": _parse_hashbytes,
430            "IIF": exp.If.from_arg_list,
431            "ISNULL": exp.Coalesce.from_arg_list,
432            "JSON_VALUE": exp.JSONExtractScalar.from_arg_list,
433            "LEN": exp.Length.from_arg_list,
434            "REPLICATE": exp.Repeat.from_arg_list,
435            "SQUARE": lambda args: exp.Pow(this=seq_get(args, 0), expression=exp.Literal.number(2)),
436            "SYSDATETIME": exp.CurrentTimestamp.from_arg_list,
437            "SUSER_NAME": exp.CurrentUser.from_arg_list,
438            "SUSER_SNAME": exp.CurrentUser.from_arg_list,
439            "SYSTEM_USER": exp.CurrentUser.from_arg_list,
440            "TIMEFROMPARTS": _parse_timefromparts,
441        }
442
443        JOIN_HINTS = {
444            "LOOP",
445            "HASH",
446            "MERGE",
447            "REMOTE",
448        }
449
450        VAR_LENGTH_DATATYPES = {
451            DataType.Type.NVARCHAR,
452            DataType.Type.VARCHAR,
453            DataType.Type.CHAR,
454            DataType.Type.NCHAR,
455        }
456
457        RETURNS_TABLE_TOKENS = parser.Parser.ID_VAR_TOKENS - {
458            TokenType.TABLE,
459            *parser.Parser.TYPE_TOKENS,
460        }
461
462        STATEMENT_PARSERS = {
463            **parser.Parser.STATEMENT_PARSERS,
464            TokenType.END: lambda self: self._parse_command(),
465        }
466
467        LOG_DEFAULTS_TO_LN = True
468
469        ALTER_TABLE_ADD_REQUIRED_FOR_EACH_COLUMN = False
470
471        def _parse_projections(self) -> t.List[exp.Expression]:
472            """
473            T-SQL supports the syntax alias = expression in the SELECT's projection list,
474            so we transform all parsed Selects to convert their EQ projections into Aliases.
475
476            See: https://learn.microsoft.com/en-us/sql/t-sql/queries/select-clause-transact-sql?view=sql-server-ver16#syntax
477            """
478            return [
479                exp.alias_(projection.expression, projection.this.this, copy=False)
480                if isinstance(projection, exp.EQ) and isinstance(projection.this, exp.Column)
481                else projection
482                for projection in super()._parse_projections()
483            ]
484
485        def _parse_commit_or_rollback(self) -> exp.Commit | exp.Rollback:
486            """Applies to SQL Server and Azure SQL Database
487            COMMIT [ { TRAN | TRANSACTION }
488                [ transaction_name | @tran_name_variable ] ]
489                [ WITH ( DELAYED_DURABILITY = { OFF | ON } ) ]
490
491            ROLLBACK { TRAN | TRANSACTION }
492                [ transaction_name | @tran_name_variable
493                | savepoint_name | @savepoint_variable ]
494            """
495            rollback = self._prev.token_type == TokenType.ROLLBACK
496
497            self._match_texts(("TRAN", "TRANSACTION"))
498            this = self._parse_id_var()
499
500            if rollback:
501                return self.expression(exp.Rollback, this=this)
502
503            durability = None
504            if self._match_pair(TokenType.WITH, TokenType.L_PAREN):
505                self._match_text_seq("DELAYED_DURABILITY")
506                self._match(TokenType.EQ)
507
508                if self._match_text_seq("OFF"):
509                    durability = False
510                else:
511                    self._match(TokenType.ON)
512                    durability = True
513
514                self._match_r_paren()
515
516            return self.expression(exp.Commit, this=this, durability=durability)
517
518        def _parse_transaction(self) -> exp.Transaction | exp.Command:
519            """Applies to SQL Server and Azure SQL Database
520            BEGIN { TRAN | TRANSACTION }
521            [ { transaction_name | @tran_name_variable }
522            [ WITH MARK [ 'description' ] ]
523            ]
524            """
525            if self._match_texts(("TRAN", "TRANSACTION")):
526                transaction = self.expression(exp.Transaction, this=self._parse_id_var())
527                if self._match_text_seq("WITH", "MARK"):
528                    transaction.set("mark", self._parse_string())
529
530                return transaction
531
532            return self._parse_as_command(self._prev)
533
534        def _parse_returns(self) -> exp.ReturnsProperty:
535            table = self._parse_id_var(any_token=False, tokens=self.RETURNS_TABLE_TOKENS)
536            returns = super()._parse_returns()
537            returns.set("table", table)
538            return returns
539
540        def _parse_convert(
541            self, strict: bool, safe: t.Optional[bool] = None
542        ) -> t.Optional[exp.Expression]:
543            to = self._parse_types()
544            self._match(TokenType.COMMA)
545            this = self._parse_conjunction()
546
547            if not to or not this:
548                return None
549
550            # Retrieve length of datatype and override to default if not specified
551            if seq_get(to.expressions, 0) is None and to.this in self.VAR_LENGTH_DATATYPES:
552                to = exp.DataType.build(to.this, expressions=[exp.Literal.number(30)], nested=False)
553
554            # Check whether a conversion with format is applicable
555            if self._match(TokenType.COMMA):
556                format_val = self._parse_number()
557                format_val_name = format_val.name if format_val else ""
558
559                if format_val_name not in TSQL.CONVERT_FORMAT_MAPPING:
560                    raise ValueError(
561                        f"CONVERT function at T-SQL does not support format style {format_val_name}"
562                    )
563
564                format_norm = exp.Literal.string(TSQL.CONVERT_FORMAT_MAPPING[format_val_name])
565
566                # Check whether the convert entails a string to date format
567                if to.this == DataType.Type.DATE:
568                    return self.expression(exp.StrToDate, this=this, format=format_norm)
569                # Check whether the convert entails a string to datetime format
570                elif to.this == DataType.Type.DATETIME:
571                    return self.expression(exp.StrToTime, this=this, format=format_norm)
572                # Check whether the convert entails a date to string format
573                elif to.this in self.VAR_LENGTH_DATATYPES:
574                    return self.expression(
575                        exp.Cast if strict else exp.TryCast,
576                        to=to,
577                        this=self.expression(exp.TimeToStr, this=this, format=format_norm),
578                        safe=safe,
579                    )
580                elif to.this == DataType.Type.TEXT:
581                    return self.expression(exp.TimeToStr, this=this, format=format_norm)
582
583            # Entails a simple cast without any format requirement
584            return self.expression(exp.Cast if strict else exp.TryCast, this=this, to=to, safe=safe)
585
586        def _parse_user_defined_function(
587            self, kind: t.Optional[TokenType] = None
588        ) -> t.Optional[exp.Expression]:
589            this = super()._parse_user_defined_function(kind=kind)
590
591            if (
592                kind == TokenType.FUNCTION
593                or isinstance(this, exp.UserDefinedFunction)
594                or self._match(TokenType.ALIAS, advance=False)
595            ):
596                return this
597
598            expressions = self._parse_csv(self._parse_function_parameter)
599            return self.expression(exp.UserDefinedFunction, this=this, expressions=expressions)
600
601        def _parse_id_var(
602            self,
603            any_token: bool = True,
604            tokens: t.Optional[t.Collection[TokenType]] = None,
605        ) -> t.Optional[exp.Expression]:
606            is_temporary = self._match(TokenType.HASH)
607            is_global = is_temporary and self._match(TokenType.HASH)
608
609            this = super()._parse_id_var(any_token=any_token, tokens=tokens)
610            if this:
611                if is_global:
612                    this.set("global", True)
613                elif is_temporary:
614                    this.set("temporary", True)
615
616            return this
617
618        def _parse_create(self) -> exp.Create | exp.Command:
619            create = super()._parse_create()
620
621            if isinstance(create, exp.Create):
622                table = create.this.this if isinstance(create.this, exp.Schema) else create.this
623                if isinstance(table, exp.Table) and table.this.args.get("temporary"):
624                    if not create.args.get("properties"):
625                        create.set("properties", exp.Properties(expressions=[]))
626
627                    create.args["properties"].append("expressions", exp.TemporaryProperty())
628
629            return create
630
631        def _parse_if(self) -> t.Optional[exp.Expression]:
632            index = self._index
633
634            if self._match_text_seq("OBJECT_ID"):
635                self._parse_wrapped_csv(self._parse_string)
636                if self._match_text_seq("IS", "NOT", "NULL") and self._match(TokenType.DROP):
637                    return self._parse_drop(exists=True)
638                self._retreat(index)
639
640            return super()._parse_if()
641
642        def _parse_unique(self) -> exp.UniqueColumnConstraint:
643            if self._match_texts(("CLUSTERED", "NONCLUSTERED")):
644                this = self.CONSTRAINT_PARSERS[self._prev.text.upper()](self)
645            else:
646                this = self._parse_schema(self._parse_id_var(any_token=False))
647
648            return self.expression(exp.UniqueColumnConstraint, this=this)
649
650    class Generator(generator.Generator):
651        LIMIT_IS_TOP = True
652        QUERY_HINTS = False
653        RETURNING_END = False
654        NVL2_SUPPORTED = False
655        ALTER_TABLE_INCLUDE_COLUMN_KEYWORD = False
656        LIMIT_FETCH = "FETCH"
657        COMPUTED_COLUMN_WITH_TYPE = False
658        CTE_RECURSIVE_KEYWORD_REQUIRED = False
659        ENSURE_BOOLS = True
660        NULL_ORDERING_SUPPORTED = False
661        SUPPORTS_SINGLE_ARG_CONCAT = False
662        TABLESAMPLE_SEED_KEYWORD = "REPEATABLE"
663
664        EXPRESSIONS_WITHOUT_NESTED_CTES = {
665            exp.Delete,
666            exp.Insert,
667            exp.Merge,
668            exp.Select,
669            exp.Subquery,
670            exp.Union,
671            exp.Update,
672        }
673
674        TYPE_MAPPING = {
675            **generator.Generator.TYPE_MAPPING,
676            exp.DataType.Type.BOOLEAN: "BIT",
677            exp.DataType.Type.DECIMAL: "NUMERIC",
678            exp.DataType.Type.DATETIME: "DATETIME2",
679            exp.DataType.Type.DOUBLE: "FLOAT",
680            exp.DataType.Type.INT: "INTEGER",
681            exp.DataType.Type.TEXT: "VARCHAR(MAX)",
682            exp.DataType.Type.TIMESTAMP: "DATETIME2",
683            exp.DataType.Type.TIMESTAMPTZ: "DATETIMEOFFSET",
684            exp.DataType.Type.VARIANT: "SQL_VARIANT",
685        }
686
687        TRANSFORMS = {
688            **generator.Generator.TRANSFORMS,
689            exp.AnyValue: any_value_to_max_sql,
690            exp.AutoIncrementColumnConstraint: lambda *_: "IDENTITY",
691            exp.DateAdd: date_delta_sql("DATEADD"),
692            exp.DateDiff: date_delta_sql("DATEDIFF"),
693            exp.CTE: transforms.preprocess([qualify_derived_table_outputs]),
694            exp.CurrentDate: rename_func("GETDATE"),
695            exp.CurrentTimestamp: rename_func("GETDATE"),
696            exp.Extract: rename_func("DATEPART"),
697            exp.GeneratedAsIdentityColumnConstraint: generatedasidentitycolumnconstraint_sql,
698            exp.GetPath: path_to_jsonpath("JSON_VALUE"),
699            exp.GroupConcat: _string_agg_sql,
700            exp.If: rename_func("IIF"),
701            exp.LastDay: lambda self, e: self.func("EOMONTH", e.this),
702            exp.Length: rename_func("LEN"),
703            exp.Max: max_or_greatest,
704            exp.MD5: lambda self, e: self.func("HASHBYTES", exp.Literal.string("MD5"), e.this),
705            exp.Min: min_or_least,
706            exp.NumberToStr: _format_sql,
707            exp.ParseJSON: lambda self, e: self.sql(e, "this"),
708            exp.Select: transforms.preprocess(
709                [
710                    transforms.eliminate_distinct_on,
711                    transforms.eliminate_semi_and_anti_joins,
712                    transforms.eliminate_qualify,
713                ]
714            ),
715            exp.Subquery: transforms.preprocess([qualify_derived_table_outputs]),
716            exp.SHA: lambda self, e: self.func("HASHBYTES", exp.Literal.string("SHA1"), e.this),
717            exp.SHA2: lambda self, e: self.func(
718                "HASHBYTES", exp.Literal.string(f"SHA2_{e.args.get('length', 256)}"), e.this
719            ),
720            exp.TemporaryProperty: lambda self, e: "",
721            exp.TimeStrToTime: timestrtotime_sql,
722            exp.TimeToStr: _format_sql,
723            exp.TsOrDsAdd: date_delta_sql("DATEADD", cast=True),
724            exp.TsOrDsDiff: date_delta_sql("DATEDIFF"),
725        }
726
727        TRANSFORMS.pop(exp.ReturnsProperty)
728
729        PROPERTIES_LOCATION = {
730            **generator.Generator.PROPERTIES_LOCATION,
731            exp.VolatileProperty: exp.Properties.Location.UNSUPPORTED,
732        }
733
734        def lateral_op(self, expression: exp.Lateral) -> str:
735            cross_apply = expression.args.get("cross_apply")
736            if cross_apply is True:
737                return "CROSS APPLY"
738            if cross_apply is False:
739                return "OUTER APPLY"
740
741            # TODO: perhaps we can check if the parent is a Join and transpile it appropriately
742            self.unsupported("LATERAL clause is not supported.")
743            return "LATERAL"
744
745        def timefromparts_sql(self, expression: exp.TimeFromParts) -> str:
746            nano = expression.args.get("nano")
747            if nano is not None:
748                nano.pop()
749                self.unsupported("Specifying nanoseconds is not supported in TIMEFROMPARTS.")
750
751            if expression.args.get("fractions") is None:
752                expression.set("fractions", exp.Literal.number(0))
753            if expression.args.get("precision") is None:
754                expression.set("precision", exp.Literal.number(0))
755
756            return rename_func("TIMEFROMPARTS")(self, expression)
757
758        def timestampfromparts_sql(self, expression: exp.TimestampFromParts) -> str:
759            zone = expression.args.get("zone")
760            if zone is not None:
761                zone.pop()
762                self.unsupported("Time zone is not supported in DATETIMEFROMPARTS.")
763
764            nano = expression.args.get("nano")
765            if nano is not None:
766                nano.pop()
767                self.unsupported("Specifying nanoseconds is not supported in DATETIMEFROMPARTS.")
768
769            if expression.args.get("milli") is None:
770                expression.set("milli", exp.Literal.number(0))
771
772            return rename_func("DATETIMEFROMPARTS")(self, expression)
773
774        def set_operation(self, expression: exp.Union, op: str) -> str:
775            limit = expression.args.get("limit")
776            if limit:
777                return self.sql(expression.limit(limit.pop(), copy=False))
778
779            return super().set_operation(expression, op)
780
781        def setitem_sql(self, expression: exp.SetItem) -> str:
782            this = expression.this
783            if isinstance(this, exp.EQ) and not isinstance(this.left, exp.Parameter):
784                # T-SQL does not use '=' in SET command, except when the LHS is a variable.
785                return f"{self.sql(this.left)} {self.sql(this.right)}"
786
787            return super().setitem_sql(expression)
788
789        def boolean_sql(self, expression: exp.Boolean) -> str:
790            if type(expression.parent) in BIT_TYPES:
791                return "1" if expression.this else "0"
792
793            return "(1 = 1)" if expression.this else "(1 = 0)"
794
795        def is_sql(self, expression: exp.Is) -> str:
796            if isinstance(expression.expression, exp.Boolean):
797                return self.binary(expression, "=")
798            return self.binary(expression, "IS")
799
800        def createable_sql(self, expression: exp.Create, locations: t.DefaultDict) -> str:
801            sql = self.sql(expression, "this")
802            properties = expression.args.get("properties")
803
804            if sql[:1] != "#" and any(
805                isinstance(prop, exp.TemporaryProperty)
806                for prop in (properties.expressions if properties else [])
807            ):
808                sql = f"#{sql}"
809
810            return sql
811
812        def create_sql(self, expression: exp.Create) -> str:
813            kind = self.sql(expression, "kind").upper()
814            exists = expression.args.pop("exists", None)
815            sql = super().create_sql(expression)
816
817            table = expression.find(exp.Table)
818
819            # Convert CTAS statement to SELECT .. INTO ..
820            if kind == "TABLE" and expression.expression:
821                ctas_with = expression.expression.args.get("with")
822                if ctas_with:
823                    ctas_with = ctas_with.pop()
824
825                subquery = expression.expression
826                if isinstance(subquery, exp.Subqueryable):
827                    subquery = subquery.subquery()
828
829                select_into = exp.select("*").from_(exp.alias_(subquery, "temp", table=True))
830                select_into.set("into", exp.Into(this=table))
831                select_into.set("with", ctas_with)
832
833                sql = self.sql(select_into)
834
835            if exists:
836                identifier = self.sql(exp.Literal.string(exp.table_name(table) if table else ""))
837                sql = self.sql(exp.Literal.string(sql))
838                if kind == "SCHEMA":
839                    sql = f"""IF NOT EXISTS (SELECT * FROM information_schema.schemata WHERE schema_name = {identifier}) EXEC({sql})"""
840                elif kind == "TABLE":
841                    assert table
842                    where = exp.and_(
843                        exp.column("table_name").eq(table.name),
844                        exp.column("table_schema").eq(table.db) if table.db else None,
845                        exp.column("table_catalog").eq(table.catalog) if table.catalog else None,
846                    )
847                    sql = f"""IF NOT EXISTS (SELECT * FROM information_schema.tables WHERE {where}) EXEC({sql})"""
848                elif kind == "INDEX":
849                    index = self.sql(exp.Literal.string(expression.this.text("this")))
850                    sql = f"""IF NOT EXISTS (SELECT * FROM sys.indexes WHERE object_id = object_id({identifier}) AND name = {index}) EXEC({sql})"""
851            elif expression.args.get("replace"):
852                sql = sql.replace("CREATE OR REPLACE ", "CREATE OR ALTER ", 1)
853
854            return self.prepend_ctes(expression, sql)
855
856        def offset_sql(self, expression: exp.Offset) -> str:
857            return f"{super().offset_sql(expression)} ROWS"
858
859        def version_sql(self, expression: exp.Version) -> str:
860            name = "SYSTEM_TIME" if expression.name == "TIMESTAMP" else expression.name
861            this = f"FOR {name}"
862            expr = expression.expression
863            kind = expression.text("kind")
864            if kind in ("FROM", "BETWEEN"):
865                args = expr.expressions
866                sep = "TO" if kind == "FROM" else "AND"
867                expr_sql = f"{self.sql(seq_get(args, 0))} {sep} {self.sql(seq_get(args, 1))}"
868            else:
869                expr_sql = self.sql(expr)
870
871            expr_sql = f" {expr_sql}" if expr_sql else ""
872            return f"{this} {kind}{expr_sql}"
873
874        def returnsproperty_sql(self, expression: exp.ReturnsProperty) -> str:
875            table = expression.args.get("table")
876            table = f"{table} " if table else ""
877            return f"RETURNS {table}{self.sql(expression, 'this')}"
878
879        def returning_sql(self, expression: exp.Returning) -> str:
880            into = self.sql(expression, "into")
881            into = self.seg(f"INTO {into}") if into else ""
882            return f"{self.seg('OUTPUT')} {self.expressions(expression, flat=True)}{into}"
883
884        def transaction_sql(self, expression: exp.Transaction) -> str:
885            this = self.sql(expression, "this")
886            this = f" {this}" if this else ""
887            mark = self.sql(expression, "mark")
888            mark = f" WITH MARK {mark}" if mark else ""
889            return f"BEGIN TRANSACTION{this}{mark}"
890
891        def commit_sql(self, expression: exp.Commit) -> str:
892            this = self.sql(expression, "this")
893            this = f" {this}" if this else ""
894            durability = expression.args.get("durability")
895            durability = (
896                f" WITH (DELAYED_DURABILITY = {'ON' if durability else 'OFF'})"
897                if durability is not None
898                else ""
899            )
900            return f"COMMIT TRANSACTION{this}{durability}"
901
902        def rollback_sql(self, expression: exp.Rollback) -> str:
903            this = self.sql(expression, "this")
904            this = f" {this}" if this else ""
905            return f"ROLLBACK TRANSACTION{this}"
906
907        def identifier_sql(self, expression: exp.Identifier) -> str:
908            identifier = super().identifier_sql(expression)
909
910            if expression.args.get("global"):
911                identifier = f"##{identifier}"
912            elif expression.args.get("temporary"):
913                identifier = f"#{identifier}"
914
915            return identifier
916
917        def constraint_sql(self, expression: exp.Constraint) -> str:
918            this = self.sql(expression, "this")
919            expressions = self.expressions(expression, flat=True, sep=" ")
920            return f"CONSTRAINT {this} {expressions}"
NORMALIZATION_STRATEGY = <NormalizationStrategy.CASE_INSENSITIVE: 'CASE_INSENSITIVE'>

Specifies the strategy according to which identifiers should be normalized.

TIME_FORMAT = "'yyyy-mm-dd hh:mm:ss'"
SUPPORTS_SEMI_ANTI_JOIN = False

Determines whether or not SEMI or ANTI joins are supported.

LOG_BASE_FIRST = False

Determines whether the base comes first in the LOG function.

TYPED_DIVISION = True

Whether the behavior of a / b depends on the types of a and b. False means a / b is always float division. True means a / b is integer division if both a and b are integers.

CONCAT_COALESCE = True

A NULL arg in CONCAT yields NULL by default, but in some dialects it yields an empty string.

TIME_MAPPING: Dict[str, str] = {'year': '%Y', 'dayofyear': '%j', 'day': '%d', 'dy': '%d', 'y': '%Y', 'week': '%W', 'ww': '%W', 'wk': '%W', 'hour': '%h', 'hh': '%I', 'minute': '%M', 'mi': '%M', 'n': '%M', 'second': '%S', 'ss': '%S', 's': '%-S', 'millisecond': '%f', 'ms': '%f', 'weekday': '%W', 'dw': '%W', 'month': '%m', 'mm': '%M', 'm': '%-M', 'Y': '%Y', 'YYYY': '%Y', 'YY': '%y', 'MMMM': '%B', 'MMM': '%b', 'MM': '%m', 'M': '%-m', 'dddd': '%A', 'dd': '%d', 'd': '%-d', 'HH': '%H', 'H': '%-H', 'h': '%-I', 'S': '%f', 'yyyy': '%Y', 'yy': '%y'}

Associates this dialect's time formats with their equivalent Python strftime format.

CONVERT_FORMAT_MAPPING = {'0': '%b %d %Y %-I:%M%p', '1': '%m/%d/%y', '2': '%y.%m.%d', '3': '%d/%m/%y', '4': '%d.%m.%y', '5': '%d-%m-%y', '6': '%d %b %y', '7': '%b %d, %y', '8': '%H:%M:%S', '9': '%b %d %Y %-I:%M:%S:%f%p', '10': 'mm-dd-yy', '11': 'yy/mm/dd', '12': 'yymmdd', '13': '%d %b %Y %H:%M:ss:%f', '14': '%H:%M:%S:%f', '20': '%Y-%m-%d %H:%M:%S', '21': '%Y-%m-%d %H:%M:%S.%f', '22': '%m/%d/%y %-I:%M:%S %p', '23': '%Y-%m-%d', '24': '%H:%M:%S', '25': '%Y-%m-%d %H:%M:%S.%f', '100': '%b %d %Y %-I:%M%p', '101': '%m/%d/%Y', '102': '%Y.%m.%d', '103': '%d/%m/%Y', '104': '%d.%m.%Y', '105': '%d-%m-%Y', '106': '%d %b %Y', '107': '%b %d, %Y', '108': '%H:%M:%S', '109': '%b %d %Y %-I:%M:%S:%f%p', '110': '%m-%d-%Y', '111': '%Y/%m/%d', '112': '%Y%m%d', '113': '%d %b %Y %H:%M:%S:%f', '114': '%H:%M:%S:%f', '120': '%Y-%m-%d %H:%M:%S', '121': '%Y-%m-%d %H:%M:%S.%f'}
FORMAT_TIME_MAPPING = {'y': '%B %Y', 'd': '%m/%d/%Y', 'H': '%-H', 'h': '%-I', 's': '%Y-%m-%d %H:%M:%S', 'D': '%A,%B,%Y', 'f': '%A,%B,%Y %-I:%M %p', 'F': '%A,%B,%Y %-I:%M:%S %p', 'g': '%m/%d/%Y %-I:%M %p', 'G': '%m/%d/%Y %-I:%M:%S %p', 'M': '%B %-d', 'm': '%B %-d', 'O': '%Y-%m-%dT%H:%M:%S', 'u': '%Y-%M-%D %H:%M:%S%z', 'U': '%A, %B %D, %Y %H:%M:%S%z', 'T': '%-I:%M:%S %p', 't': '%-I:%M', 'Y': '%a %Y'}
tokenizer_class = <class 'TSQL.Tokenizer'>
parser_class = <class 'TSQL.Parser'>
generator_class = <class 'TSQL.Generator'>
TIME_TRIE: Dict = {'y': {'e': {'a': {'r': {0: True}}}, 0: True, 'y': {'y': {'y': {0: True}}, 0: True}}, 'd': {'a': {'y': {'o': {'f': {'y': {'e': {'a': {'r': {0: True}}}}}}, 0: True}}, 'y': {0: True}, 'w': {0: True}, 'd': {'d': {'d': {0: True}}, 0: True}, 0: True}, 'w': {'e': {'e': {'k': {0: True, 'd': {'a': {'y': {0: True}}}}}}, 'w': {0: True}, 'k': {0: True}}, 'h': {'o': {'u': {'r': {0: True}}}, 'h': {0: True}, 0: True}, 'm': {'i': {'n': {'u': {'t': {'e': {0: True}}}}, 0: True, 'l': {'l': {'i': {'s': {'e': {'c': {'o': {'n': {'d': {0: True}}}}}}}}}}, 's': {0: True}, 'o': {'n': {'t': {'h': {0: True}}}}, 'm': {0: True}, 0: True}, 'n': {0: True}, 's': {'e': {'c': {'o': {'n': {'d': {0: True}}}}}, 's': {0: True}, 0: True}, 'Y': {0: True, 'Y': {'Y': {'Y': {0: True}}, 0: True}}, 'M': {'M': {'M': {'M': {0: True}, 0: True}, 0: True}, 0: True}, 'H': {'H': {0: True}, 0: True}, 'S': {0: True}}
FORMAT_TRIE: Dict = {'y': {'e': {'a': {'r': {0: True}}}, 0: True, 'y': {'y': {'y': {0: True}}, 0: True}}, 'd': {'a': {'y': {'o': {'f': {'y': {'e': {'a': {'r': {0: True}}}}}}, 0: True}}, 'y': {0: True}, 'w': {0: True}, 'd': {'d': {'d': {0: True}}, 0: True}, 0: True}, 'w': {'e': {'e': {'k': {0: True, 'd': {'a': {'y': {0: True}}}}}}, 'w': {0: True}, 'k': {0: True}}, 'h': {'o': {'u': {'r': {0: True}}}, 'h': {0: True}, 0: True}, 'm': {'i': {'n': {'u': {'t': {'e': {0: True}}}}, 0: True, 'l': {'l': {'i': {'s': {'e': {'c': {'o': {'n': {'d': {0: True}}}}}}}}}}, 's': {0: True}, 'o': {'n': {'t': {'h': {0: True}}}}, 'm': {0: True}, 0: True}, 'n': {0: True}, 's': {'e': {'c': {'o': {'n': {'d': {0: True}}}}}, 's': {0: True}, 0: True}, 'Y': {0: True, 'Y': {'Y': {'Y': {0: True}}, 0: True}}, 'M': {'M': {'M': {'M': {0: True}, 0: True}, 0: True}, 0: True}, 'H': {'H': {0: True}, 0: True}, 'S': {0: True}}
INVERSE_TIME_MAPPING: Dict[str, str] = {'%Y': 'yyyy', '%j': 'dayofyear', '%d': 'dd', '%W': 'dw', '%h': 'hour', '%I': 'hh', '%M': 'mm', '%S': 'ss', '%-S': 's', '%f': 'S', '%m': 'MM', '%-M': 'm', '%y': 'yy', '%B': 'MMMM', '%b': 'MMM', '%-m': 'M', '%A': 'dddd', '%-d': 'd', '%H': 'HH', '%-H': 'H', '%-I': 'h'}
INVERSE_TIME_TRIE: Dict = {'%': {'Y': {0: True}, 'j': {0: True}, 'd': {0: True}, 'W': {0: True}, 'h': {0: True}, 'I': {0: True}, 'M': {0: True}, 'S': {0: True}, '-': {'S': {0: True}, 'M': {0: True}, 'm': {0: True}, 'd': {0: True}, 'H': {0: True}, 'I': {0: True}}, 'f': {0: True}, 'm': {0: True}, 'y': {0: True}, 'B': {0: True}, 'b': {0: True}, 'A': {0: True}, 'H': {0: True}}}
INVERSE_ESCAPE_SEQUENCES: Dict[str, str] = {}
QUOTE_START = "'"
QUOTE_END = "'"
IDENTIFIER_START = '"'
IDENTIFIER_END = '"'
BIT_START: Optional[str] = None
BIT_END: Optional[str] = None
HEX_START: Optional[str] = '0x'
HEX_END: Optional[str] = ''
BYTE_START: Optional[str] = None
BYTE_END: Optional[str] = None
UNICODE_START: Optional[str] = None
UNICODE_END: Optional[str] = None
class TSQL.Tokenizer(sqlglot.tokens.Tokenizer):
379    class Tokenizer(tokens.Tokenizer):
380        IDENTIFIERS = ['"', ("[", "]")]
381        QUOTES = ["'", '"']
382        HEX_STRINGS = [("0x", ""), ("0X", "")]
383        VAR_SINGLE_TOKENS = {"@", "$", "#"}
384
385        KEYWORDS = {
386            **tokens.Tokenizer.KEYWORDS,
387            "DATETIME2": TokenType.DATETIME,
388            "DATETIMEOFFSET": TokenType.TIMESTAMPTZ,
389            "DECLARE": TokenType.COMMAND,
390            "IMAGE": TokenType.IMAGE,
391            "MONEY": TokenType.MONEY,
392            "NTEXT": TokenType.TEXT,
393            "NVARCHAR(MAX)": TokenType.TEXT,
394            "PRINT": TokenType.COMMAND,
395            "PROC": TokenType.PROCEDURE,
396            "REAL": TokenType.FLOAT,
397            "ROWVERSION": TokenType.ROWVERSION,
398            "SMALLDATETIME": TokenType.DATETIME,
399            "SMALLMONEY": TokenType.SMALLMONEY,
400            "SQL_VARIANT": TokenType.VARIANT,
401            "TOP": TokenType.TOP,
402            "UNIQUEIDENTIFIER": TokenType.UNIQUEIDENTIFIER,
403            "UPDATE STATISTICS": TokenType.COMMAND,
404            "VARCHAR(MAX)": TokenType.TEXT,
405            "XML": TokenType.XML,
406            "OUTPUT": TokenType.RETURNING,
407            "SYSTEM_USER": TokenType.CURRENT_USER,
408            "FOR SYSTEM_TIME": TokenType.TIMESTAMP_SNAPSHOT,
409        }
IDENTIFIERS = ['"', ('[', ']')]
QUOTES = ["'", '"']
HEX_STRINGS = [('0x', ''), ('0X', '')]
VAR_SINGLE_TOKENS = {'$', '#', '@'}
KEYWORDS = {'{%': <TokenType.BLOCK_START: 'BLOCK_START'>, '{%+': <TokenType.BLOCK_START: 'BLOCK_START'>, '{%-': <TokenType.BLOCK_START: 'BLOCK_START'>, '%}': <TokenType.BLOCK_END: 'BLOCK_END'>, '+%}': <TokenType.BLOCK_END: 'BLOCK_END'>, '-%}': <TokenType.BLOCK_END: 'BLOCK_END'>, '{{+': <TokenType.BLOCK_START: 'BLOCK_START'>, '{{-': <TokenType.BLOCK_START: 'BLOCK_START'>, '+}}': <TokenType.BLOCK_END: 'BLOCK_END'>, '-}}': <TokenType.BLOCK_END: 'BLOCK_END'>, '/*+': <TokenType.HINT: 'HINT'>, '==': <TokenType.EQ: 'EQ'>, '::': <TokenType.DCOLON: 'DCOLON'>, '||': <TokenType.DPIPE: 'DPIPE'>, '>=': <TokenType.GTE: 'GTE'>, '<=': <TokenType.LTE: 'LTE'>, '<>': <TokenType.NEQ: 'NEQ'>, '!=': <TokenType.NEQ: 'NEQ'>, ':=': <TokenType.COLON_EQ: 'COLON_EQ'>, '<=>': <TokenType.NULLSAFE_EQ: 'NULLSAFE_EQ'>, '->': <TokenType.ARROW: 'ARROW'>, '->>': <TokenType.DARROW: 'DARROW'>, '=>': <TokenType.FARROW: 'FARROW'>, '#>': <TokenType.HASH_ARROW: 'HASH_ARROW'>, '#>>': <TokenType.DHASH_ARROW: 'DHASH_ARROW'>, '<->': <TokenType.LR_ARROW: 'LR_ARROW'>, '&&': <TokenType.DAMP: 'DAMP'>, '??': <TokenType.DQMARK: 'DQMARK'>, 'ALL': <TokenType.ALL: 'ALL'>, 'ALWAYS': <TokenType.ALWAYS: 'ALWAYS'>, 'AND': <TokenType.AND: 'AND'>, 'ANTI': <TokenType.ANTI: 'ANTI'>, 'ANY': <TokenType.ANY: 'ANY'>, 'ASC': <TokenType.ASC: 'ASC'>, 'AS': <TokenType.ALIAS: 'ALIAS'>, 'ASOF': <TokenType.ASOF: 'ASOF'>, 'AUTOINCREMENT': <TokenType.AUTO_INCREMENT: 'AUTO_INCREMENT'>, 'AUTO_INCREMENT': <TokenType.AUTO_INCREMENT: 'AUTO_INCREMENT'>, 'BEGIN': <TokenType.BEGIN: 'BEGIN'>, 'BETWEEN': <TokenType.BETWEEN: 'BETWEEN'>, 'CACHE': <TokenType.CACHE: 'CACHE'>, 'UNCACHE': <TokenType.UNCACHE: 'UNCACHE'>, 'CASE': <TokenType.CASE: 'CASE'>, 'CHARACTER SET': <TokenType.CHARACTER_SET: 'CHARACTER_SET'>, 'CLUSTER BY': <TokenType.CLUSTER_BY: 'CLUSTER_BY'>, 'COLLATE': <TokenType.COLLATE: 'COLLATE'>, 'COLUMN': <TokenType.COLUMN: 'COLUMN'>, 'COMMIT': <TokenType.COMMIT: 'COMMIT'>, 'CONNECT BY': <TokenType.CONNECT_BY: 'CONNECT_BY'>, 'CONSTRAINT': <TokenType.CONSTRAINT: 'CONSTRAINT'>, 'CREATE': <TokenType.CREATE: 'CREATE'>, 'CROSS': <TokenType.CROSS: 'CROSS'>, 'CUBE': <TokenType.CUBE: 'CUBE'>, 'CURRENT_DATE': <TokenType.CURRENT_DATE: 'CURRENT_DATE'>, 'CURRENT_TIME': <TokenType.CURRENT_TIME: 'CURRENT_TIME'>, 'CURRENT_TIMESTAMP': <TokenType.CURRENT_TIMESTAMP: 'CURRENT_TIMESTAMP'>, 'CURRENT_USER': <TokenType.CURRENT_USER: 'CURRENT_USER'>, 'DATABASE': <TokenType.DATABASE: 'DATABASE'>, 'DEFAULT': <TokenType.DEFAULT: 'DEFAULT'>, 'DELETE': <TokenType.DELETE: 'DELETE'>, 'DESC': <TokenType.DESC: 'DESC'>, 'DESCRIBE': <TokenType.DESCRIBE: 'DESCRIBE'>, 'DISTINCT': <TokenType.DISTINCT: 'DISTINCT'>, 'DISTRIBUTE BY': <TokenType.DISTRIBUTE_BY: 'DISTRIBUTE_BY'>, 'DIV': <TokenType.DIV: 'DIV'>, 'DROP': <TokenType.DROP: 'DROP'>, 'ELSE': <TokenType.ELSE: 'ELSE'>, 'END': <TokenType.END: 'END'>, 'ESCAPE': <TokenType.ESCAPE: 'ESCAPE'>, 'EXCEPT': <TokenType.EXCEPT: 'EXCEPT'>, 'EXECUTE': <TokenType.EXECUTE: 'EXECUTE'>, 'EXISTS': <TokenType.EXISTS: 'EXISTS'>, 'FALSE': <TokenType.FALSE: 'FALSE'>, 'FETCH': <TokenType.FETCH: 'FETCH'>, 'FILTER': <TokenType.FILTER: 'FILTER'>, 'FIRST': <TokenType.FIRST: 'FIRST'>, 'FULL': <TokenType.FULL: 'FULL'>, 'FUNCTION': <TokenType.FUNCTION: 'FUNCTION'>, 'FOR': <TokenType.FOR: 'FOR'>, 'FOREIGN KEY': <TokenType.FOREIGN_KEY: 'FOREIGN_KEY'>, 'FORMAT': <TokenType.FORMAT: 'FORMAT'>, 'FROM': <TokenType.FROM: 'FROM'>, 'GEOGRAPHY': <TokenType.GEOGRAPHY: 'GEOGRAPHY'>, 'GEOMETRY': <TokenType.GEOMETRY: 'GEOMETRY'>, 'GLOB': <TokenType.GLOB: 'GLOB'>, 'GROUP BY': <TokenType.GROUP_BY: 'GROUP_BY'>, 'GROUPING SETS': <TokenType.GROUPING_SETS: 'GROUPING_SETS'>, 'HAVING': <TokenType.HAVING: 'HAVING'>, 'ILIKE': <TokenType.ILIKE: 'ILIKE'>, 'IN': <TokenType.IN: 'IN'>, 'INDEX': <TokenType.INDEX: 'INDEX'>, 'INET': <TokenType.INET: 'INET'>, 'INNER': <TokenType.INNER: 'INNER'>, 'INSERT': <TokenType.INSERT: 'INSERT'>, 'INTERVAL': <TokenType.INTERVAL: 'INTERVAL'>, 'INTERSECT': <TokenType.INTERSECT: 'INTERSECT'>, 'INTO': <TokenType.INTO: 'INTO'>, 'IS': <TokenType.IS: 'IS'>, 'ISNULL': <TokenType.ISNULL: 'ISNULL'>, 'JOIN': <TokenType.JOIN: 'JOIN'>, 'KEEP': <TokenType.KEEP: 'KEEP'>, 'KILL': <TokenType.KILL: 'KILL'>, 'LATERAL': <TokenType.LATERAL: 'LATERAL'>, 'LEFT': <TokenType.LEFT: 'LEFT'>, 'LIKE': <TokenType.LIKE: 'LIKE'>, 'LIMIT': <TokenType.LIMIT: 'LIMIT'>, 'LOAD': <TokenType.LOAD: 'LOAD'>, 'LOCK': <TokenType.LOCK: 'LOCK'>, 'MERGE': <TokenType.MERGE: 'MERGE'>, 'NATURAL': <TokenType.NATURAL: 'NATURAL'>, 'NEXT': <TokenType.NEXT: 'NEXT'>, 'NOT': <TokenType.NOT: 'NOT'>, 'NOTNULL': <TokenType.NOTNULL: 'NOTNULL'>, 'NULL': <TokenType.NULL: 'NULL'>, 'OBJECT': <TokenType.OBJECT: 'OBJECT'>, 'OFFSET': <TokenType.OFFSET: 'OFFSET'>, 'ON': <TokenType.ON: 'ON'>, 'OR': <TokenType.OR: 'OR'>, 'XOR': <TokenType.XOR: 'XOR'>, 'ORDER BY': <TokenType.ORDER_BY: 'ORDER_BY'>, 'ORDINALITY': <TokenType.ORDINALITY: 'ORDINALITY'>, 'OUTER': <TokenType.OUTER: 'OUTER'>, 'OVER': <TokenType.OVER: 'OVER'>, 'OVERLAPS': <TokenType.OVERLAPS: 'OVERLAPS'>, 'OVERWRITE': <TokenType.OVERWRITE: 'OVERWRITE'>, 'PARTITION': <TokenType.PARTITION: 'PARTITION'>, 'PARTITION BY': <TokenType.PARTITION_BY: 'PARTITION_BY'>, 'PARTITIONED BY': <TokenType.PARTITION_BY: 'PARTITION_BY'>, 'PARTITIONED_BY': <TokenType.PARTITION_BY: 'PARTITION_BY'>, 'PERCENT': <TokenType.PERCENT: 'PERCENT'>, 'PIVOT': <TokenType.PIVOT: 'PIVOT'>, 'PRAGMA': <TokenType.PRAGMA: 'PRAGMA'>, 'PRIMARY KEY': <TokenType.PRIMARY_KEY: 'PRIMARY_KEY'>, 'PROCEDURE': <TokenType.PROCEDURE: 'PROCEDURE'>, 'QUALIFY': <TokenType.QUALIFY: 'QUALIFY'>, 'RANGE': <TokenType.RANGE: 'RANGE'>, 'RECURSIVE': <TokenType.RECURSIVE: 'RECURSIVE'>, 'REGEXP': <TokenType.RLIKE: 'RLIKE'>, 'REPLACE': <TokenType.REPLACE: 'REPLACE'>, 'RETURNING': <TokenType.RETURNING: 'RETURNING'>, 'REFERENCES': <TokenType.REFERENCES: 'REFERENCES'>, 'RIGHT': <TokenType.RIGHT: 'RIGHT'>, 'RLIKE': <TokenType.RLIKE: 'RLIKE'>, 'ROLLBACK': <TokenType.ROLLBACK: 'ROLLBACK'>, 'ROLLUP': <TokenType.ROLLUP: 'ROLLUP'>, 'ROW': <TokenType.ROW: 'ROW'>, 'ROWS': <TokenType.ROWS: 'ROWS'>, 'SCHEMA': <TokenType.SCHEMA: 'SCHEMA'>, 'SELECT': <TokenType.SELECT: 'SELECT'>, 'SEMI': <TokenType.SEMI: 'SEMI'>, 'SET': <TokenType.SET: 'SET'>, 'SETTINGS': <TokenType.SETTINGS: 'SETTINGS'>, 'SHOW': <TokenType.SHOW: 'SHOW'>, 'SIMILAR TO': <TokenType.SIMILAR_TO: 'SIMILAR_TO'>, 'SOME': <TokenType.SOME: 'SOME'>, 'SORT BY': <TokenType.SORT_BY: 'SORT_BY'>, 'START WITH': <TokenType.START_WITH: 'START_WITH'>, 'TABLE': <TokenType.TABLE: 'TABLE'>, 'TABLESAMPLE': <TokenType.TABLE_SAMPLE: 'TABLE_SAMPLE'>, 'TEMP': <TokenType.TEMPORARY: 'TEMPORARY'>, 'TEMPORARY': <TokenType.TEMPORARY: 'TEMPORARY'>, 'THEN': <TokenType.THEN: 'THEN'>, 'TRUE': <TokenType.TRUE: 'TRUE'>, 'UNION': <TokenType.UNION: 'UNION'>, 'UNKNOWN': <TokenType.UNKNOWN: 'UNKNOWN'>, 'UNNEST': <TokenType.UNNEST: 'UNNEST'>, 'UNPIVOT': <TokenType.UNPIVOT: 'UNPIVOT'>, 'UPDATE': <TokenType.UPDATE: 'UPDATE'>, 'USE': <TokenType.USE: 'USE'>, 'USING': <TokenType.USING: 'USING'>, 'UUID': <TokenType.UUID: 'UUID'>, 'VALUES': <TokenType.VALUES: 'VALUES'>, 'VIEW': <TokenType.VIEW: 'VIEW'>, 'VOLATILE': <TokenType.VOLATILE: 'VOLATILE'>, 'WHEN': <TokenType.WHEN: 'WHEN'>, 'WHERE': <TokenType.WHERE: 'WHERE'>, 'WINDOW': <TokenType.WINDOW: 'WINDOW'>, 'WITH': <TokenType.WITH: 'WITH'>, 'APPLY': <TokenType.APPLY: 'APPLY'>, 'ARRAY': <TokenType.ARRAY: 'ARRAY'>, 'BIT': <TokenType.BIT: 'BIT'>, 'BOOL': <TokenType.BOOLEAN: 'BOOLEAN'>, 'BOOLEAN': <TokenType.BOOLEAN: 'BOOLEAN'>, 'BYTE': <TokenType.TINYINT: 'TINYINT'>, 'MEDIUMINT': <TokenType.MEDIUMINT: 'MEDIUMINT'>, 'INT1': <TokenType.TINYINT: 'TINYINT'>, 'TINYINT': <TokenType.TINYINT: 'TINYINT'>, 'INT16': <TokenType.SMALLINT: 'SMALLINT'>, 'SHORT': <TokenType.SMALLINT: 'SMALLINT'>, 'SMALLINT': <TokenType.SMALLINT: 'SMALLINT'>, 'INT128': <TokenType.INT128: 'INT128'>, 'HUGEINT': <TokenType.INT128: 'INT128'>, 'INT2': <TokenType.SMALLINT: 'SMALLINT'>, 'INTEGER': <TokenType.INT: 'INT'>, 'INT': <TokenType.INT: 'INT'>, 'INT4': <TokenType.INT: 'INT'>, 'INT32': <TokenType.INT: 'INT'>, 'INT64': <TokenType.BIGINT: 'BIGINT'>, 'LONG': <TokenType.BIGINT: 'BIGINT'>, 'BIGINT': <TokenType.BIGINT: 'BIGINT'>, 'INT8': <TokenType.TINYINT: 'TINYINT'>, 'DEC': <TokenType.DECIMAL: 'DECIMAL'>, 'DECIMAL': <TokenType.DECIMAL: 'DECIMAL'>, 'BIGDECIMAL': <TokenType.BIGDECIMAL: 'BIGDECIMAL'>, 'BIGNUMERIC': <TokenType.BIGDECIMAL: 'BIGDECIMAL'>, 'MAP': <TokenType.MAP: 'MAP'>, 'NULLABLE': <TokenType.NULLABLE: 'NULLABLE'>, 'NUMBER': <TokenType.DECIMAL: 'DECIMAL'>, 'NUMERIC': <TokenType.DECIMAL: 'DECIMAL'>, 'FIXED': <TokenType.DECIMAL: 'DECIMAL'>, 'REAL': <TokenType.FLOAT: 'FLOAT'>, 'FLOAT': <TokenType.FLOAT: 'FLOAT'>, 'FLOAT4': <TokenType.FLOAT: 'FLOAT'>, 'FLOAT8': <TokenType.DOUBLE: 'DOUBLE'>, 'DOUBLE': <TokenType.DOUBLE: 'DOUBLE'>, 'DOUBLE PRECISION': <TokenType.DOUBLE: 'DOUBLE'>, 'JSON': <TokenType.JSON: 'JSON'>, 'CHAR': <TokenType.CHAR: 'CHAR'>, 'CHARACTER': <TokenType.CHAR: 'CHAR'>, 'NCHAR': <TokenType.NCHAR: 'NCHAR'>, 'VARCHAR': <TokenType.VARCHAR: 'VARCHAR'>, 'VARCHAR2': <TokenType.VARCHAR: 'VARCHAR'>, 'NVARCHAR': <TokenType.NVARCHAR: 'NVARCHAR'>, 'NVARCHAR2': <TokenType.NVARCHAR: 'NVARCHAR'>, 'STR': <TokenType.TEXT: 'TEXT'>, 'STRING': <TokenType.TEXT: 'TEXT'>, 'TEXT': <TokenType.TEXT: 'TEXT'>, 'LONGTEXT': <TokenType.LONGTEXT: 'LONGTEXT'>, 'MEDIUMTEXT': <TokenType.MEDIUMTEXT: 'MEDIUMTEXT'>, 'TINYTEXT': <TokenType.TINYTEXT: 'TINYTEXT'>, 'CLOB': <TokenType.TEXT: 'TEXT'>, 'LONGVARCHAR': <TokenType.TEXT: 'TEXT'>, 'BINARY': <TokenType.BINARY: 'BINARY'>, 'BLOB': <TokenType.VARBINARY: 'VARBINARY'>, 'LONGBLOB': <TokenType.LONGBLOB: 'LONGBLOB'>, 'MEDIUMBLOB': <TokenType.MEDIUMBLOB: 'MEDIUMBLOB'>, 'TINYBLOB': <TokenType.TINYBLOB: 'TINYBLOB'>, 'BYTEA': <TokenType.VARBINARY: 'VARBINARY'>, 'VARBINARY': <TokenType.VARBINARY: 'VARBINARY'>, 'TIME': <TokenType.TIME: 'TIME'>, 'TIMETZ': <TokenType.TIMETZ: 'TIMETZ'>, 'TIMESTAMP': <TokenType.TIMESTAMP: 'TIMESTAMP'>, 'TIMESTAMPTZ': <TokenType.TIMESTAMPTZ: 'TIMESTAMPTZ'>, 'TIMESTAMPLTZ': <TokenType.TIMESTAMPLTZ: 'TIMESTAMPLTZ'>, 'DATE': <TokenType.DATE: 'DATE'>, 'DATETIME': <TokenType.DATETIME: 'DATETIME'>, 'INT4RANGE': <TokenType.INT4RANGE: 'INT4RANGE'>, 'INT4MULTIRANGE': <TokenType.INT4MULTIRANGE: 'INT4MULTIRANGE'>, 'INT8RANGE': <TokenType.INT8RANGE: 'INT8RANGE'>, 'INT8MULTIRANGE': <TokenType.INT8MULTIRANGE: 'INT8MULTIRANGE'>, 'NUMRANGE': <TokenType.NUMRANGE: 'NUMRANGE'>, 'NUMMULTIRANGE': <TokenType.NUMMULTIRANGE: 'NUMMULTIRANGE'>, 'TSRANGE': <TokenType.TSRANGE: 'TSRANGE'>, 'TSMULTIRANGE': <TokenType.TSMULTIRANGE: 'TSMULTIRANGE'>, 'TSTZRANGE': <TokenType.TSTZRANGE: 'TSTZRANGE'>, 'TSTZMULTIRANGE': <TokenType.TSTZMULTIRANGE: 'TSTZMULTIRANGE'>, 'DATERANGE': <TokenType.DATERANGE: 'DATERANGE'>, 'DATEMULTIRANGE': <TokenType.DATEMULTIRANGE: 'DATEMULTIRANGE'>, 'UNIQUE': <TokenType.UNIQUE: 'UNIQUE'>, 'STRUCT': <TokenType.STRUCT: 'STRUCT'>, 'VARIANT': <TokenType.VARIANT: 'VARIANT'>, 'ALTER': <TokenType.ALTER: 'ALTER'>, 'ANALYZE': <TokenType.COMMAND: 'COMMAND'>, 'CALL': <TokenType.COMMAND: 'COMMAND'>, 'COMMENT': <TokenType.COMMENT: 'COMMENT'>, 'COPY': <TokenType.COMMAND: 'COMMAND'>, 'EXPLAIN': <TokenType.COMMAND: 'COMMAND'>, 'GRANT': <TokenType.COMMAND: 'COMMAND'>, 'OPTIMIZE': <TokenType.COMMAND: 'COMMAND'>, 'PREPARE': <TokenType.COMMAND: 'COMMAND'>, 'TRUNCATE': <TokenType.COMMAND: 'COMMAND'>, 'VACUUM': <TokenType.COMMAND: 'COMMAND'>, 'USER-DEFINED': <TokenType.USERDEFINED: 'USERDEFINED'>, 'FOR VERSION': <TokenType.VERSION_SNAPSHOT: 'VERSION_SNAPSHOT'>, 'FOR TIMESTAMP': <TokenType.TIMESTAMP_SNAPSHOT: 'TIMESTAMP_SNAPSHOT'>, 'DATETIME2': <TokenType.DATETIME: 'DATETIME'>, 'DATETIMEOFFSET': <TokenType.TIMESTAMPTZ: 'TIMESTAMPTZ'>, 'DECLARE': <TokenType.COMMAND: 'COMMAND'>, 'IMAGE': <TokenType.IMAGE: 'IMAGE'>, 'MONEY': <TokenType.MONEY: 'MONEY'>, 'NTEXT': <TokenType.TEXT: 'TEXT'>, 'NVARCHAR(MAX)': <TokenType.TEXT: 'TEXT'>, 'PRINT': <TokenType.COMMAND: 'COMMAND'>, 'PROC': <TokenType.PROCEDURE: 'PROCEDURE'>, 'ROWVERSION': <TokenType.ROWVERSION: 'ROWVERSION'>, 'SMALLDATETIME': <TokenType.DATETIME: 'DATETIME'>, 'SMALLMONEY': <TokenType.SMALLMONEY: 'SMALLMONEY'>, 'SQL_VARIANT': <TokenType.VARIANT: 'VARIANT'>, 'TOP': <TokenType.TOP: 'TOP'>, 'UNIQUEIDENTIFIER': <TokenType.UNIQUEIDENTIFIER: 'UNIQUEIDENTIFIER'>, 'UPDATE STATISTICS': <TokenType.COMMAND: 'COMMAND'>, 'VARCHAR(MAX)': <TokenType.TEXT: 'TEXT'>, 'XML': <TokenType.XML: 'XML'>, 'OUTPUT': <TokenType.RETURNING: 'RETURNING'>, 'SYSTEM_USER': <TokenType.CURRENT_USER: 'CURRENT_USER'>, 'FOR SYSTEM_TIME': <TokenType.TIMESTAMP_SNAPSHOT: 'TIMESTAMP_SNAPSHOT'>}
class TSQL.Parser(sqlglot.parser.Parser):
411    class Parser(parser.Parser):
412        SET_REQUIRES_ASSIGNMENT_DELIMITER = False
413
414        FUNCTIONS = {
415            **parser.Parser.FUNCTIONS,
416            "CHARINDEX": lambda args: exp.StrPosition(
417                this=seq_get(args, 1),
418                substr=seq_get(args, 0),
419                position=seq_get(args, 2),
420            ),
421            "DATEADD": parse_date_delta(exp.DateAdd, unit_mapping=DATE_DELTA_INTERVAL),
422            "DATEDIFF": _parse_date_delta(exp.DateDiff, unit_mapping=DATE_DELTA_INTERVAL),
423            "DATENAME": _format_time_lambda(exp.TimeToStr, full_format_mapping=True),
424            "DATEPART": _format_time_lambda(exp.TimeToStr),
425            "DATETIMEFROMPARTS": _parse_datetimefromparts,
426            "EOMONTH": _parse_eomonth,
427            "FORMAT": _parse_format,
428            "GETDATE": exp.CurrentTimestamp.from_arg_list,
429            "HASHBYTES": _parse_hashbytes,
430            "IIF": exp.If.from_arg_list,
431            "ISNULL": exp.Coalesce.from_arg_list,
432            "JSON_VALUE": exp.JSONExtractScalar.from_arg_list,
433            "LEN": exp.Length.from_arg_list,
434            "REPLICATE": exp.Repeat.from_arg_list,
435            "SQUARE": lambda args: exp.Pow(this=seq_get(args, 0), expression=exp.Literal.number(2)),
436            "SYSDATETIME": exp.CurrentTimestamp.from_arg_list,
437            "SUSER_NAME": exp.CurrentUser.from_arg_list,
438            "SUSER_SNAME": exp.CurrentUser.from_arg_list,
439            "SYSTEM_USER": exp.CurrentUser.from_arg_list,
440            "TIMEFROMPARTS": _parse_timefromparts,
441        }
442
443        JOIN_HINTS = {
444            "LOOP",
445            "HASH",
446            "MERGE",
447            "REMOTE",
448        }
449
450        VAR_LENGTH_DATATYPES = {
451            DataType.Type.NVARCHAR,
452            DataType.Type.VARCHAR,
453            DataType.Type.CHAR,
454            DataType.Type.NCHAR,
455        }
456
457        RETURNS_TABLE_TOKENS = parser.Parser.ID_VAR_TOKENS - {
458            TokenType.TABLE,
459            *parser.Parser.TYPE_TOKENS,
460        }
461
462        STATEMENT_PARSERS = {
463            **parser.Parser.STATEMENT_PARSERS,
464            TokenType.END: lambda self: self._parse_command(),
465        }
466
467        LOG_DEFAULTS_TO_LN = True
468
469        ALTER_TABLE_ADD_REQUIRED_FOR_EACH_COLUMN = False
470
471        def _parse_projections(self) -> t.List[exp.Expression]:
472            """
473            T-SQL supports the syntax alias = expression in the SELECT's projection list,
474            so we transform all parsed Selects to convert their EQ projections into Aliases.
475
476            See: https://learn.microsoft.com/en-us/sql/t-sql/queries/select-clause-transact-sql?view=sql-server-ver16#syntax
477            """
478            return [
479                exp.alias_(projection.expression, projection.this.this, copy=False)
480                if isinstance(projection, exp.EQ) and isinstance(projection.this, exp.Column)
481                else projection
482                for projection in super()._parse_projections()
483            ]
484
485        def _parse_commit_or_rollback(self) -> exp.Commit | exp.Rollback:
486            """Applies to SQL Server and Azure SQL Database
487            COMMIT [ { TRAN | TRANSACTION }
488                [ transaction_name | @tran_name_variable ] ]
489                [ WITH ( DELAYED_DURABILITY = { OFF | ON } ) ]
490
491            ROLLBACK { TRAN | TRANSACTION }
492                [ transaction_name | @tran_name_variable
493                | savepoint_name | @savepoint_variable ]
494            """
495            rollback = self._prev.token_type == TokenType.ROLLBACK
496
497            self._match_texts(("TRAN", "TRANSACTION"))
498            this = self._parse_id_var()
499
500            if rollback:
501                return self.expression(exp.Rollback, this=this)
502
503            durability = None
504            if self._match_pair(TokenType.WITH, TokenType.L_PAREN):
505                self._match_text_seq("DELAYED_DURABILITY")
506                self._match(TokenType.EQ)
507
508                if self._match_text_seq("OFF"):
509                    durability = False
510                else:
511                    self._match(TokenType.ON)
512                    durability = True
513
514                self._match_r_paren()
515
516            return self.expression(exp.Commit, this=this, durability=durability)
517
518        def _parse_transaction(self) -> exp.Transaction | exp.Command:
519            """Applies to SQL Server and Azure SQL Database
520            BEGIN { TRAN | TRANSACTION }
521            [ { transaction_name | @tran_name_variable }
522            [ WITH MARK [ 'description' ] ]
523            ]
524            """
525            if self._match_texts(("TRAN", "TRANSACTION")):
526                transaction = self.expression(exp.Transaction, this=self._parse_id_var())
527                if self._match_text_seq("WITH", "MARK"):
528                    transaction.set("mark", self._parse_string())
529
530                return transaction
531
532            return self._parse_as_command(self._prev)
533
534        def _parse_returns(self) -> exp.ReturnsProperty:
535            table = self._parse_id_var(any_token=False, tokens=self.RETURNS_TABLE_TOKENS)
536            returns = super()._parse_returns()
537            returns.set("table", table)
538            return returns
539
540        def _parse_convert(
541            self, strict: bool, safe: t.Optional[bool] = None
542        ) -> t.Optional[exp.Expression]:
543            to = self._parse_types()
544            self._match(TokenType.COMMA)
545            this = self._parse_conjunction()
546
547            if not to or not this:
548                return None
549
550            # Retrieve length of datatype and override to default if not specified
551            if seq_get(to.expressions, 0) is None and to.this in self.VAR_LENGTH_DATATYPES:
552                to = exp.DataType.build(to.this, expressions=[exp.Literal.number(30)], nested=False)
553
554            # Check whether a conversion with format is applicable
555            if self._match(TokenType.COMMA):
556                format_val = self._parse_number()
557                format_val_name = format_val.name if format_val else ""
558
559                if format_val_name not in TSQL.CONVERT_FORMAT_MAPPING:
560                    raise ValueError(
561                        f"CONVERT function at T-SQL does not support format style {format_val_name}"
562                    )
563
564                format_norm = exp.Literal.string(TSQL.CONVERT_FORMAT_MAPPING[format_val_name])
565
566                # Check whether the convert entails a string to date format
567                if to.this == DataType.Type.DATE:
568                    return self.expression(exp.StrToDate, this=this, format=format_norm)
569                # Check whether the convert entails a string to datetime format
570                elif to.this == DataType.Type.DATETIME:
571                    return self.expression(exp.StrToTime, this=this, format=format_norm)
572                # Check whether the convert entails a date to string format
573                elif to.this in self.VAR_LENGTH_DATATYPES:
574                    return self.expression(
575                        exp.Cast if strict else exp.TryCast,
576                        to=to,
577                        this=self.expression(exp.TimeToStr, this=this, format=format_norm),
578                        safe=safe,
579                    )
580                elif to.this == DataType.Type.TEXT:
581                    return self.expression(exp.TimeToStr, this=this, format=format_norm)
582
583            # Entails a simple cast without any format requirement
584            return self.expression(exp.Cast if strict else exp.TryCast, this=this, to=to, safe=safe)
585
586        def _parse_user_defined_function(
587            self, kind: t.Optional[TokenType] = None
588        ) -> t.Optional[exp.Expression]:
589            this = super()._parse_user_defined_function(kind=kind)
590
591            if (
592                kind == TokenType.FUNCTION
593                or isinstance(this, exp.UserDefinedFunction)
594                or self._match(TokenType.ALIAS, advance=False)
595            ):
596                return this
597
598            expressions = self._parse_csv(self._parse_function_parameter)
599            return self.expression(exp.UserDefinedFunction, this=this, expressions=expressions)
600
601        def _parse_id_var(
602            self,
603            any_token: bool = True,
604            tokens: t.Optional[t.Collection[TokenType]] = None,
605        ) -> t.Optional[exp.Expression]:
606            is_temporary = self._match(TokenType.HASH)
607            is_global = is_temporary and self._match(TokenType.HASH)
608
609            this = super()._parse_id_var(any_token=any_token, tokens=tokens)
610            if this:
611                if is_global:
612                    this.set("global", True)
613                elif is_temporary:
614                    this.set("temporary", True)
615
616            return this
617
618        def _parse_create(self) -> exp.Create | exp.Command:
619            create = super()._parse_create()
620
621            if isinstance(create, exp.Create):
622                table = create.this.this if isinstance(create.this, exp.Schema) else create.this
623                if isinstance(table, exp.Table) and table.this.args.get("temporary"):
624                    if not create.args.get("properties"):
625                        create.set("properties", exp.Properties(expressions=[]))
626
627                    create.args["properties"].append("expressions", exp.TemporaryProperty())
628
629            return create
630
631        def _parse_if(self) -> t.Optional[exp.Expression]:
632            index = self._index
633
634            if self._match_text_seq("OBJECT_ID"):
635                self._parse_wrapped_csv(self._parse_string)
636                if self._match_text_seq("IS", "NOT", "NULL") and self._match(TokenType.DROP):
637                    return self._parse_drop(exists=True)
638                self._retreat(index)
639
640            return super()._parse_if()
641
642        def _parse_unique(self) -> exp.UniqueColumnConstraint:
643            if self._match_texts(("CLUSTERED", "NONCLUSTERED")):
644                this = self.CONSTRAINT_PARSERS[self._prev.text.upper()](self)
645            else:
646                this = self._parse_schema(self._parse_id_var(any_token=False))
647
648            return self.expression(exp.UniqueColumnConstraint, this=this)

Parser consumes a list of tokens produced by the Tokenizer and produces a parsed syntax tree.

Arguments:
  • error_level: The desired error level. Default: ErrorLevel.IMMEDIATE
  • error_message_context: Determines the amount of context to capture from a query string when displaying the error message (in number of characters). Default: 100
  • max_errors: Maximum number of error messages to include in a raised ParseError. This is only relevant if error_level is ErrorLevel.RAISE. Default: 3
SET_REQUIRES_ASSIGNMENT_DELIMITER = False
FUNCTIONS = {'ABS': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Abs'>>, 'ANONYMOUS_AGG_FUNC': <bound method Func.from_arg_list of <class 'sqlglot.expressions.AnonymousAggFunc'>>, 'ANY_VALUE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.AnyValue'>>, 'APPROX_DISTINCT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ApproxDistinct'>>, 'APPROX_COUNT_DISTINCT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ApproxDistinct'>>, 'APPROX_QUANTILE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ApproxQuantile'>>, 'APPROX_TOP_K': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ApproxTopK'>>, 'ARG_MAX': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArgMax'>>, 'ARGMAX': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArgMax'>>, 'MAX_BY': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArgMax'>>, 'ARG_MIN': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArgMin'>>, 'ARGMIN': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArgMin'>>, 'MIN_BY': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArgMin'>>, 'ARRAY': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Array'>>, 'ARRAY_AGG': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArrayAgg'>>, 'ARRAY_ALL': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArrayAll'>>, 'ARRAY_ANY': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArrayAny'>>, 'ARRAY_CONCAT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArrayConcat'>>, 'ARRAY_CAT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArrayConcat'>>, 'ARRAY_CONTAINS': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArrayContains'>>, 'FILTER': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArrayFilter'>>, 'ARRAY_FILTER': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArrayFilter'>>, 'ARRAY_JOIN': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArrayJoin'>>, 'ARRAY_SIZE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArraySize'>>, 'ARRAY_SORT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArraySort'>>, 'ARRAY_SUM': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArraySum'>>, 'ARRAY_UNION_AGG': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArrayUnionAgg'>>, 'ARRAY_UNIQUE_AGG': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ArrayUniqueAgg'>>, 'AVG': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Avg'>>, 'CASE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Case'>>, 'CAST': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Cast'>>, 'CAST_TO_STR_TYPE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.CastToStrType'>>, 'CEIL': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Ceil'>>, 'CEILING': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Ceil'>>, 'CHR': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Chr'>>, 'CHAR': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Chr'>>, 'COALESCE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Coalesce'>>, 'IFNULL': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Coalesce'>>, 'NVL': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Coalesce'>>, 'COLLATE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Collate'>>, 'COMBINED_AGG_FUNC': <bound method Func.from_arg_list of <class 'sqlglot.expressions.CombinedAggFunc'>>, 'COMBINED_PARAMETERIZED_AGG': <bound method Func.from_arg_list of <class 'sqlglot.expressions.CombinedParameterizedAgg'>>, 'CONCAT': <function Parser.<lambda>>, 'CONCAT_WS': <function Parser.<lambda>>, 'COUNT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Count'>>, 'COUNT_IF': <bound method Func.from_arg_list of <class 'sqlglot.expressions.CountIf'>>, 'COUNTIF': <bound method Func.from_arg_list of <class 'sqlglot.expressions.CountIf'>>, 'CURRENT_DATE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.CurrentDate'>>, 'CURRENT_DATETIME': <bound method Func.from_arg_list of <class 'sqlglot.expressions.CurrentDatetime'>>, 'CURRENT_TIME': <bound method Func.from_arg_list of <class 'sqlglot.expressions.CurrentTime'>>, 'CURRENT_TIMESTAMP': <bound method Func.from_arg_list of <class 'sqlglot.expressions.CurrentTimestamp'>>, 'CURRENT_USER': <bound method Func.from_arg_list of <class 'sqlglot.expressions.CurrentUser'>>, 'DATE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Date'>>, 'DATE_ADD': <bound method Func.from_arg_list of <class 'sqlglot.expressions.DateAdd'>>, 'DATEDIFF': <function _parse_date_delta.<locals>.inner_func>, 'DATE_DIFF': <bound method Func.from_arg_list of <class 'sqlglot.expressions.DateDiff'>>, 'DATE_FROM_PARTS': <bound method Func.from_arg_list of <class 'sqlglot.expressions.DateFromParts'>>, 'DATEFROMPARTS': <bound method Func.from_arg_list of <class 'sqlglot.expressions.DateFromParts'>>, 'DATE_STR_TO_DATE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.DateStrToDate'>>, 'DATE_SUB': <bound method Func.from_arg_list of <class 'sqlglot.expressions.DateSub'>>, 'DATE_TO_DATE_STR': <function Parser.<lambda>>, 'DATE_TO_DI': <bound method Func.from_arg_list of <class 'sqlglot.expressions.DateToDi'>>, 'DATE_TRUNC': <bound method Func.from_arg_list of <class 'sqlglot.expressions.DateTrunc'>>, 'DATETIME_ADD': <bound method Func.from_arg_list of <class 'sqlglot.expressions.DatetimeAdd'>>, 'DATETIME_DIFF': <bound method Func.from_arg_list of <class 'sqlglot.expressions.DatetimeDiff'>>, 'DATETIME_SUB': <bound method Func.from_arg_list of <class 'sqlglot.expressions.DatetimeSub'>>, 'DATETIME_TRUNC': <bound method Func.from_arg_list of <class 'sqlglot.expressions.DatetimeTrunc'>>, 'DAY': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Day'>>, 'DAY_OF_MONTH': <bound method Func.from_arg_list of <class 'sqlglot.expressions.DayOfMonth'>>, 'DAYOFMONTH': <bound method Func.from_arg_list of <class 'sqlglot.expressions.DayOfMonth'>>, 'DAY_OF_WEEK': <bound method Func.from_arg_list of <class 'sqlglot.expressions.DayOfWeek'>>, 'DAYOFWEEK': <bound method Func.from_arg_list of <class 'sqlglot.expressions.DayOfWeek'>>, 'DAY_OF_YEAR': <bound method Func.from_arg_list of <class 'sqlglot.expressions.DayOfYear'>>, 'DAYOFYEAR': <bound method Func.from_arg_list of <class 'sqlglot.expressions.DayOfYear'>>, 'DECODE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Decode'>>, 'DI_TO_DATE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.DiToDate'>>, 'ENCODE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Encode'>>, 'EXP': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Exp'>>, 'EXPLODE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Explode'>>, 'EXPLODE_OUTER': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ExplodeOuter'>>, 'EXTRACT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Extract'>>, 'FIRST': <bound method Func.from_arg_list of <class 'sqlglot.expressions.First'>>, 'FLATTEN': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Flatten'>>, 'FLOOR': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Floor'>>, 'FROM_BASE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.FromBase'>>, 'FROM_BASE64': <bound method Func.from_arg_list of <class 'sqlglot.expressions.FromBase64'>>, 'GENERATE_SERIES': <bound method Func.from_arg_list of <class 'sqlglot.expressions.GenerateSeries'>>, 'GET_PATH': <bound method Func.from_arg_list of <class 'sqlglot.expressions.GetPath'>>, 'GREATEST': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Greatest'>>, 'GROUP_CONCAT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.GroupConcat'>>, 'HEX': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Hex'>>, 'HLL': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Hll'>>, 'IF': <bound method Func.from_arg_list of <class 'sqlglot.expressions.If'>>, 'INITCAP': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Initcap'>>, 'IS_INF': <bound method Func.from_arg_list of <class 'sqlglot.expressions.IsInf'>>, 'ISINF': <bound method Func.from_arg_list of <class 'sqlglot.expressions.IsInf'>>, 'IS_NAN': <bound method Func.from_arg_list of <class 'sqlglot.expressions.IsNan'>>, 'ISNAN': <bound method Func.from_arg_list of <class 'sqlglot.expressions.IsNan'>>, 'J_S_O_N_ARRAY': <bound method Func.from_arg_list of <class 'sqlglot.expressions.JSONArray'>>, 'J_S_O_N_ARRAY_AGG': <bound method Func.from_arg_list of <class 'sqlglot.expressions.JSONArrayAgg'>>, 'JSON_ARRAY_CONTAINS': <bound method Func.from_arg_list of <class 'sqlglot.expressions.JSONArrayContains'>>, 'JSONB_EXTRACT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.JSONBExtract'>>, 'JSONB_EXTRACT_SCALAR': <bound method Func.from_arg_list of <class 'sqlglot.expressions.JSONBExtractScalar'>>, 'JSON_EXTRACT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.JSONExtract'>>, 'JSON_EXTRACT_SCALAR': <bound method Func.from_arg_list of <class 'sqlglot.expressions.JSONExtractScalar'>>, 'JSON_FORMAT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.JSONFormat'>>, 'J_S_O_N_OBJECT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.JSONObject'>>, 'J_S_O_N_TABLE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.JSONTable'>>, 'LAST': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Last'>>, 'LAST_DAY': <bound method Func.from_arg_list of <class 'sqlglot.expressions.LastDay'>>, 'LAST_DAY_OF_MONTH': <bound method Func.from_arg_list of <class 'sqlglot.expressions.LastDay'>>, 'LEAST': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Least'>>, 'LEFT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Left'>>, 'LENGTH': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Length'>>, 'LEN': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Length'>>, 'LEVENSHTEIN': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Levenshtein'>>, 'LN': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Ln'>>, 'LOG': <function parse_logarithm>, 'LOG10': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Log10'>>, 'LOG2': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Log2'>>, 'LOGICAL_AND': <bound method Func.from_arg_list of <class 'sqlglot.expressions.LogicalAnd'>>, 'BOOL_AND': <bound method Func.from_arg_list of <class 'sqlglot.expressions.LogicalAnd'>>, 'BOOLAND_AGG': <bound method Func.from_arg_list of <class 'sqlglot.expressions.LogicalAnd'>>, 'LOGICAL_OR': <bound method Func.from_arg_list of <class 'sqlglot.expressions.LogicalOr'>>, 'BOOL_OR': <bound method Func.from_arg_list of <class 'sqlglot.expressions.LogicalOr'>>, 'BOOLOR_AGG': <bound method Func.from_arg_list of <class 'sqlglot.expressions.LogicalOr'>>, 'LOWER': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Lower'>>, 'LCASE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Lower'>>, 'MD5': <bound method Func.from_arg_list of <class 'sqlglot.expressions.MD5'>>, 'MD5_DIGEST': <bound method Func.from_arg_list of <class 'sqlglot.expressions.MD5Digest'>>, 'MAP': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Map'>>, 'MAP_FROM_ENTRIES': <bound method Func.from_arg_list of <class 'sqlglot.expressions.MapFromEntries'>>, 'MATCH_AGAINST': <bound method Func.from_arg_list of <class 'sqlglot.expressions.MatchAgainst'>>, 'MAX': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Max'>>, 'MIN': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Min'>>, 'MONTH': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Month'>>, 'MONTHS_BETWEEN': <bound method Func.from_arg_list of <class 'sqlglot.expressions.MonthsBetween'>>, 'NEXT_VALUE_FOR': <bound method Func.from_arg_list of <class 'sqlglot.expressions.NextValueFor'>>, 'NULLIF': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Nullif'>>, 'NUMBER_TO_STR': <bound method Func.from_arg_list of <class 'sqlglot.expressions.NumberToStr'>>, 'NVL2': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Nvl2'>>, 'OPEN_J_S_O_N': <bound method Func.from_arg_list of <class 'sqlglot.expressions.OpenJSON'>>, 'PARAMETERIZED_AGG': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ParameterizedAgg'>>, 'PARSE_JSON': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ParseJSON'>>, 'JSON_PARSE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ParseJSON'>>, 'PERCENTILE_CONT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.PercentileCont'>>, 'PERCENTILE_DISC': <bound method Func.from_arg_list of <class 'sqlglot.expressions.PercentileDisc'>>, 'POSEXPLODE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Posexplode'>>, 'POSEXPLODE_OUTER': <bound method Func.from_arg_list of <class 'sqlglot.expressions.PosexplodeOuter'>>, 'POWER': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Pow'>>, 'POW': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Pow'>>, 'PREDICT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Predict'>>, 'QUANTILE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Quantile'>>, 'RAND': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Rand'>>, 'RANDOM': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Rand'>>, 'RANDN': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Randn'>>, 'RANGE_N': <bound method Func.from_arg_list of <class 'sqlglot.expressions.RangeN'>>, 'READ_CSV': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ReadCSV'>>, 'REDUCE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Reduce'>>, 'REGEXP_EXTRACT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.RegexpExtract'>>, 'REGEXP_I_LIKE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.RegexpILike'>>, 'REGEXP_LIKE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.RegexpLike'>>, 'REGEXP_REPLACE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.RegexpReplace'>>, 'REGEXP_SPLIT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.RegexpSplit'>>, 'REPEAT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Repeat'>>, 'RIGHT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Right'>>, 'ROUND': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Round'>>, 'ROW_NUMBER': <bound method Func.from_arg_list of <class 'sqlglot.expressions.RowNumber'>>, 'SHA': <bound method Func.from_arg_list of <class 'sqlglot.expressions.SHA'>>, 'SHA1': <bound method Func.from_arg_list of <class 'sqlglot.expressions.SHA'>>, 'SHA2': <bound method Func.from_arg_list of <class 'sqlglot.expressions.SHA2'>>, 'SAFE_DIVIDE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.SafeDivide'>>, 'SORT_ARRAY': <bound method Func.from_arg_list of <class 'sqlglot.expressions.SortArray'>>, 'SPLIT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Split'>>, 'SQRT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Sqrt'>>, 'STANDARD_HASH': <bound method Func.from_arg_list of <class 'sqlglot.expressions.StandardHash'>>, 'STAR_MAP': <bound method Func.from_arg_list of <class 'sqlglot.expressions.StarMap'>>, 'STARTS_WITH': <bound method Func.from_arg_list of <class 'sqlglot.expressions.StartsWith'>>, 'STARTSWITH': <bound method Func.from_arg_list of <class 'sqlglot.expressions.StartsWith'>>, 'STDDEV': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Stddev'>>, 'STDDEV_POP': <bound method Func.from_arg_list of <class 'sqlglot.expressions.StddevPop'>>, 'STDDEV_SAMP': <bound method Func.from_arg_list of <class 'sqlglot.expressions.StddevSamp'>>, 'STR_POSITION': <bound method Func.from_arg_list of <class 'sqlglot.expressions.StrPosition'>>, 'STR_TO_DATE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.StrToDate'>>, 'STR_TO_MAP': <bound method Func.from_arg_list of <class 'sqlglot.expressions.StrToMap'>>, 'STR_TO_TIME': <bound method Func.from_arg_list of <class 'sqlglot.expressions.StrToTime'>>, 'STR_TO_UNIX': <bound method Func.from_arg_list of <class 'sqlglot.expressions.StrToUnix'>>, 'STRUCT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Struct'>>, 'STRUCT_EXTRACT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.StructExtract'>>, 'STUFF': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Stuff'>>, 'INSERT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Stuff'>>, 'SUBSTRING': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Substring'>>, 'SUM': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Sum'>>, 'TIME_ADD': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TimeAdd'>>, 'TIME_DIFF': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TimeDiff'>>, 'TIME_FROM_PARTS': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TimeFromParts'>>, 'TIMEFROMPARTS': <function _parse_timefromparts>, 'TIME_STR_TO_DATE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TimeStrToDate'>>, 'TIME_STR_TO_TIME': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TimeStrToTime'>>, 'TIME_STR_TO_UNIX': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TimeStrToUnix'>>, 'TIME_SUB': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TimeSub'>>, 'TIME_TO_STR': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TimeToStr'>>, 'TIME_TO_TIME_STR': <function Parser.<lambda>>, 'TIME_TO_UNIX': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TimeToUnix'>>, 'TIME_TRUNC': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TimeTrunc'>>, 'TIMESTAMP': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Timestamp'>>, 'TIMESTAMP_ADD': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TimestampAdd'>>, 'TIMESTAMP_DIFF': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TimestampDiff'>>, 'TIMESTAMP_FROM_PARTS': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TimestampFromParts'>>, 'TIMESTAMPFROMPARTS': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TimestampFromParts'>>, 'TIMESTAMP_SUB': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TimestampSub'>>, 'TIMESTAMP_TRUNC': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TimestampTrunc'>>, 'TO_ARRAY': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ToArray'>>, 'TO_BASE64': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ToBase64'>>, 'TO_CHAR': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ToChar'>>, 'TO_DAYS': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ToDays'>>, 'TRANSFORM': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Transform'>>, 'TRIM': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Trim'>>, 'TRY_CAST': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TryCast'>>, 'TS_OR_DI_TO_DI': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TsOrDiToDi'>>, 'TS_OR_DS_ADD': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TsOrDsAdd'>>, 'TS_OR_DS_DIFF': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TsOrDsDiff'>>, 'TS_OR_DS_TO_DATE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TsOrDsToDate'>>, 'TS_OR_DS_TO_DATE_STR': <function Parser.<lambda>>, 'TS_OR_DS_TO_TIME': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TsOrDsToTime'>>, 'UNHEX': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Unhex'>>, 'UNIX_DATE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.UnixDate'>>, 'UNIX_TO_STR': <bound method Func.from_arg_list of <class 'sqlglot.expressions.UnixToStr'>>, 'UNIX_TO_TIME': <bound method Func.from_arg_list of <class 'sqlglot.expressions.UnixToTime'>>, 'UNIX_TO_TIME_STR': <bound method Func.from_arg_list of <class 'sqlglot.expressions.UnixToTimeStr'>>, 'UPPER': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Upper'>>, 'UCASE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Upper'>>, 'VAR_MAP': <function parse_var_map>, 'VARIANCE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Variance'>>, 'VARIANCE_SAMP': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Variance'>>, 'VAR_SAMP': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Variance'>>, 'VARIANCE_POP': <bound method Func.from_arg_list of <class 'sqlglot.expressions.VariancePop'>>, 'VAR_POP': <bound method Func.from_arg_list of <class 'sqlglot.expressions.VariancePop'>>, 'WEEK': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Week'>>, 'WEEK_OF_YEAR': <bound method Func.from_arg_list of <class 'sqlglot.expressions.WeekOfYear'>>, 'WEEKOFYEAR': <bound method Func.from_arg_list of <class 'sqlglot.expressions.WeekOfYear'>>, 'WHEN': <bound method Func.from_arg_list of <class 'sqlglot.expressions.When'>>, 'X_M_L_TABLE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.XMLTable'>>, 'XOR': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Xor'>>, 'YEAR': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Year'>>, 'GLOB': <function Parser.<lambda>>, 'LIKE': <function parse_like>, 'CHARINDEX': <function TSQL.Parser.<lambda>>, 'DATEADD': <function parse_date_delta.<locals>.inner_func>, 'DATENAME': <function _format_time_lambda.<locals>._format_time>, 'DATEPART': <function _format_time_lambda.<locals>._format_time>, 'DATETIMEFROMPARTS': <function _parse_datetimefromparts>, 'EOMONTH': <function _parse_eomonth>, 'FORMAT': <function _parse_format>, 'GETDATE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.CurrentTimestamp'>>, 'HASHBYTES': <function _parse_hashbytes>, 'IIF': <bound method Func.from_arg_list of <class 'sqlglot.expressions.If'>>, 'ISNULL': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Coalesce'>>, 'JSON_VALUE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.JSONExtractScalar'>>, 'REPLICATE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Repeat'>>, 'SQUARE': <function TSQL.Parser.<lambda>>, 'SYSDATETIME': <bound method Func.from_arg_list of <class 'sqlglot.expressions.CurrentTimestamp'>>, 'SUSER_NAME': <bound method Func.from_arg_list of <class 'sqlglot.expressions.CurrentUser'>>, 'SUSER_SNAME': <bound method Func.from_arg_list of <class 'sqlglot.expressions.CurrentUser'>>, 'SYSTEM_USER': <bound method Func.from_arg_list of <class 'sqlglot.expressions.CurrentUser'>>}
JOIN_HINTS = {'LOOP', 'MERGE', 'REMOTE', 'HASH'}
VAR_LENGTH_DATATYPES = {<Type.NVARCHAR: 'NVARCHAR'>, <Type.NCHAR: 'NCHAR'>, <Type.CHAR: 'CHAR'>, <Type.VARCHAR: 'VARCHAR'>}
RETURNS_TABLE_TOKENS = {<TokenType.SET: 'SET'>, <TokenType.FINAL: 'FINAL'>, <TokenType.SHOW: 'SHOW'>, <TokenType.OVERLAPS: 'OVERLAPS'>, <TokenType.ESCAPE: 'ESCAPE'>, <TokenType.CURRENT_TIMESTAMP: 'CURRENT_TIMESTAMP'>, <TokenType.FULL: 'FULL'>, <TokenType.COLUMN: 'COLUMN'>, <TokenType.RECURSIVE: 'RECURSIVE'>, <TokenType.USE: 'USE'>, <TokenType.PERCENT: 'PERCENT'>, <TokenType.NEXT: 'NEXT'>, <TokenType.LEFT: 'LEFT'>, <TokenType.PARTITION: 'PARTITION'>, <TokenType.OFFSET: 'OFFSET'>, <TokenType.SETTINGS: 'SETTINGS'>, <TokenType.VIEW: 'VIEW'>, <TokenType.ORDINALITY: 'ORDINALITY'>, <TokenType.REPLACE: 'REPLACE'>, <TokenType.WINDOW: 'WINDOW'>, <TokenType.BEGIN: 'BEGIN'>, <TokenType.DESC: 'DESC'>, <TokenType.EXISTS: 'EXISTS'>, <TokenType.CONSTRAINT: 'CONSTRAINT'>, <TokenType.CURRENT_DATE: 'CURRENT_DATE'>, <TokenType.ROW: 'ROW'>, <TokenType.COMMENT: 'COMMENT'>, <TokenType.CURRENT_USER: 'CURRENT_USER'>, <TokenType.FOREIGN_KEY: 'FOREIGN_KEY'>, <TokenType.UNIQUE: 'UNIQUE'>, <TokenType.FIRST: 'FIRST'>, <TokenType.AUTO_INCREMENT: 'AUTO_INCREMENT'>, <TokenType.FUNCTION: 'FUNCTION'>, <TokenType.ROWS: 'ROWS'>, <TokenType.OVERWRITE: 'OVERWRITE'>, <TokenType.EXECUTE: 'EXECUTE'>, <TokenType.TRUE: 'TRUE'>, <TokenType.COLLATE: 'COLLATE'>, <TokenType.MERGE: 'MERGE'>, <TokenType.DICTIONARY: 'DICTIONARY'>, <TokenType.SOME: 'SOME'>, <TokenType.PROCEDURE: 'PROCEDURE'>, <TokenType.RIGHT: 'RIGHT'>, <TokenType.UNPIVOT: 'UNPIVOT'>, <TokenType.DESCRIBE: 'DESCRIBE'>, <TokenType.ANY: 'ANY'>, <TokenType.IS: 'IS'>, <TokenType.LOAD: 'LOAD'>, <TokenType.DIV: 'DIV'>, <TokenType.DATABASE: 'DATABASE'>, <TokenType.FALSE: 'FALSE'>, <TokenType.CASE: 'CASE'>, <TokenType.FILTER: 'FILTER'>, <TokenType.SCHEMA: 'SCHEMA'>, <TokenType.CURRENT_TIME: 'CURRENT_TIME'>, <TokenType.PIVOT: 'PIVOT'>, <TokenType.COMMAND: 'COMMAND'>, <TokenType.DELETE: 'DELETE'>, <TokenType.INDEX: 'INDEX'>, <TokenType.KEEP: 'KEEP'>, <TokenType.END: 'END'>, <TokenType.REFERENCES: 'REFERENCES'>, <TokenType.CACHE: 'CACHE'>, <TokenType.SEMI: 'SEMI'>, <TokenType.TEMPORARY: 'TEMPORARY'>, <TokenType.UPDATE: 'UPDATE'>, <TokenType.CURRENT_DATETIME: 'CURRENT_DATETIME'>, <TokenType.ALL: 'ALL'>, <TokenType.FORMAT: 'FORMAT'>, <TokenType.VAR: 'VAR'>, <TokenType.RANGE: 'RANGE'>, <TokenType.ASC: 'ASC'>, <TokenType.MODEL: 'MODEL'>, <TokenType.NATURAL: 'NATURAL'>, <TokenType.DEFAULT: 'DEFAULT'>, <TokenType.VOLATILE: 'VOLATILE'>, <TokenType.COMMIT: 'COMMIT'>, <TokenType.ISNULL: 'ISNULL'>, <TokenType.TOP: 'TOP'>, <TokenType.ANTI: 'ANTI'>, <TokenType.KILL: 'KILL'>, <TokenType.APPLY: 'APPLY'>, <TokenType.OPERATOR: 'OPERATOR'>, <TokenType.PRAGMA: 'PRAGMA'>, <TokenType.REFRESH: 'REFRESH'>}
STATEMENT_PARSERS = {<TokenType.ALTER: 'ALTER'>: <function Parser.<lambda>>, <TokenType.BEGIN: 'BEGIN'>: <function Parser.<lambda>>, <TokenType.CACHE: 'CACHE'>: <function Parser.<lambda>>, <TokenType.COMMIT: 'COMMIT'>: <function Parser.<lambda>>, <TokenType.COMMENT: 'COMMENT'>: <function Parser.<lambda>>, <TokenType.CREATE: 'CREATE'>: <function Parser.<lambda>>, <TokenType.DELETE: 'DELETE'>: <function Parser.<lambda>>, <TokenType.DESC: 'DESC'>: <function Parser.<lambda>>, <TokenType.DESCRIBE: 'DESCRIBE'>: <function Parser.<lambda>>, <TokenType.DROP: 'DROP'>: <function Parser.<lambda>>, <TokenType.INSERT: 'INSERT'>: <function Parser.<lambda>>, <TokenType.KILL: 'KILL'>: <function Parser.<lambda>>, <TokenType.LOAD: 'LOAD'>: <function Parser.<lambda>>, <TokenType.MERGE: 'MERGE'>: <function Parser.<lambda>>, <TokenType.PIVOT: 'PIVOT'>: <function Parser.<lambda>>, <TokenType.PRAGMA: 'PRAGMA'>: <function Parser.<lambda>>, <TokenType.REFRESH: 'REFRESH'>: <function Parser.<lambda>>, <TokenType.ROLLBACK: 'ROLLBACK'>: <function Parser.<lambda>>, <TokenType.SET: 'SET'>: <function Parser.<lambda>>, <TokenType.UNCACHE: 'UNCACHE'>: <function Parser.<lambda>>, <TokenType.UPDATE: 'UPDATE'>: <function Parser.<lambda>>, <TokenType.USE: 'USE'>: <function Parser.<lambda>>, <TokenType.END: 'END'>: <function TSQL.Parser.<lambda>>}
LOG_DEFAULTS_TO_LN = True
ALTER_TABLE_ADD_REQUIRED_FOR_EACH_COLUMN = False
TABLE_ALIAS_TOKENS = {<TokenType.INT8MULTIRANGE: 'INT8MULTIRANGE'>, <TokenType.TINYBLOB: 'TINYBLOB'>, <TokenType.SET: 'SET'>, <TokenType.BIGINT: 'BIGINT'>, <TokenType.TIMESTAMPLTZ: 'TIMESTAMPLTZ'>, <TokenType.FINAL: 'FINAL'>, <TokenType.SHOW: 'SHOW'>, <TokenType.INT: 'INT'>, <TokenType.OVERLAPS: 'OVERLAPS'>, <TokenType.XML: 'XML'>, <TokenType.ESCAPE: 'ESCAPE'>, <TokenType.UINT256: 'UINT256'>, <TokenType.MEDIUMINT: 'MEDIUMINT'>, <TokenType.CURRENT_TIMESTAMP: 'CURRENT_TIMESTAMP'>, <TokenType.GEOMETRY: 'GEOMETRY'>, <TokenType.SMALLMONEY: 'SMALLMONEY'>, <TokenType.COLUMN: 'COLUMN'>, <TokenType.RECURSIVE: 'RECURSIVE'>, <TokenType.MONEY: 'MONEY'>, <TokenType.NULL: 'NULL'>, <TokenType.USE: 'USE'>, <TokenType.TIMESTAMP_NS: 'TIMESTAMP_NS'>, <TokenType.PERCENT: 'PERCENT'>, <TokenType.INT256: 'INT256'>, <TokenType.NUMRANGE: 'NUMRANGE'>, <TokenType.NESTED: 'NESTED'>, <TokenType.NEXT: 'NEXT'>, <TokenType.DECIMAL: 'DECIMAL'>, <TokenType.TIMESTAMP_MS: 'TIMESTAMP_MS'>, <TokenType.VARCHAR: 'VARCHAR'>, <TokenType.PARTITION: 'PARTITION'>, <TokenType.DATERANGE: 'DATERANGE'>, <TokenType.UNKNOWN: 'UNKNOWN'>, <TokenType.FIXEDSTRING: 'FIXEDSTRING'>, <TokenType.TIMESTAMP: 'TIMESTAMP'>, <TokenType.INTERVAL: 'INTERVAL'>, <TokenType.SETTINGS: 'SETTINGS'>, <TokenType.NUMMULTIRANGE: 'NUMMULTIRANGE'>, <TokenType.SUPER: 'SUPER'>, <TokenType.VIEW: 'VIEW'>, <TokenType.ORDINALITY: 'ORDINALITY'>, <TokenType.REPLACE: 'REPLACE'>, <TokenType.BEGIN: 'BEGIN'>, <TokenType.VARBINARY: 'VARBINARY'>, <TokenType.DESC: 'DESC'>, <TokenType.EXISTS: 'EXISTS'>, <TokenType.CONSTRAINT: 'CONSTRAINT'>, <TokenType.ARRAY: 'ARRAY'>, <TokenType.NULLABLE: 'NULLABLE'>, <TokenType.CURRENT_DATE: 'CURRENT_DATE'>, <TokenType.INT8RANGE: 'INT8RANGE'>, <TokenType.ROW: 'ROW'>, <TokenType.COMMENT: 'COMMENT'>, <TokenType.IPPREFIX: 'IPPREFIX'>, <TokenType.DOUBLE: 'DOUBLE'>, <TokenType.MEDIUMBLOB: 'MEDIUMBLOB'>, <TokenType.CURRENT_USER: 'CURRENT_USER'>, <TokenType.FOREIGN_KEY: 'FOREIGN_KEY'>, <TokenType.UNIQUE: 'UNIQUE'>, <TokenType.FIRST: 'FIRST'>, <TokenType.AUTO_INCREMENT: 'AUTO_INCREMENT'>, <TokenType.FUNCTION: 'FUNCTION'>, <TokenType.ROWS: 'ROWS'>, <TokenType.INT4MULTIRANGE: 'INT4MULTIRANGE'>, <TokenType.GEOGRAPHY: 'GEOGRAPHY'>, <TokenType.SMALLSERIAL: 'SMALLSERIAL'>, <TokenType.BIGSERIAL: 'BIGSERIAL'>, <TokenType.OVERWRITE: 'OVERWRITE'>, <TokenType.INET: 'INET'>, <TokenType.USERDEFINED: 'USERDEFINED'>, <TokenType.INT4RANGE: 'INT4RANGE'>, <TokenType.EXECUTE: 'EXECUTE'>, <TokenType.TRUE: 'TRUE'>, <TokenType.UINT128: 'UINT128'>, <TokenType.BIT: 'BIT'>, <TokenType.FLOAT: 'FLOAT'>, <TokenType.DATETIME64: 'DATETIME64'>, <TokenType.COLLATE: 'COLLATE'>, <TokenType.IPADDRESS: 'IPADDRESS'>, <TokenType.UMEDIUMINT: 'UMEDIUMINT'>, <TokenType.MERGE: 'MERGE'>, <TokenType.DICTIONARY: 'DICTIONARY'>, <TokenType.SOME: 'SOME'>, <TokenType.TEXT: 'TEXT'>, <TokenType.PROCEDURE: 'PROCEDURE'>, <TokenType.LONGTEXT: 'LONGTEXT'>, <TokenType.TIMETZ: 'TIMETZ'>, <TokenType.PSEUDO_TYPE: 'PSEUDO_TYPE'>, <TokenType.UNPIVOT: 'UNPIVOT'>, <TokenType.NCHAR: 'NCHAR'>, <TokenType.DESCRIBE: 'DESCRIBE'>, <TokenType.UBIGINT: 'UBIGINT'>, <TokenType.JSON: 'JSON'>, <TokenType.ANY: 'ANY'>, <TokenType.IS: 'IS'>, <TokenType.LOAD: 'LOAD'>, <TokenType.TSRANGE: 'TSRANGE'>, <TokenType.DIV: 'DIV'>, <TokenType.DATABASE: 'DATABASE'>, <TokenType.NVARCHAR: 'NVARCHAR'>, <TokenType.INT128: 'INT128'>, <TokenType.MAP: 'MAP'>, <TokenType.YEAR: 'YEAR'>, <TokenType.CHAR: 'CHAR'>, <TokenType.FALSE: 'FALSE'>, <TokenType.CASE: 'CASE'>, <TokenType.UINT: 'UINT'>, <TokenType.DATEMULTIRANGE: 'DATEMULTIRANGE'>, <TokenType.FILTER: 'FILTER'>, <TokenType.TSMULTIRANGE: 'TSMULTIRANGE'>, <TokenType.SCHEMA: 'SCHEMA'>, <TokenType.TIME: 'TIME'>, <TokenType.ENUM: 'ENUM'>, <TokenType.DATETIME: 'DATETIME'>, <TokenType.PIVOT: 'PIVOT'>, <TokenType.CURRENT_TIME: 'CURRENT_TIME'>, <TokenType.ROWVERSION: 'ROWVERSION'>, <TokenType.COMMAND: 'COMMAND'>, <TokenType.ENUM8: 'ENUM8'>, <TokenType.TSTZMULTIRANGE: 'TSTZMULTIRANGE'>, <TokenType.DELETE: 'DELETE'>, <TokenType.INDEX: 'INDEX'>, <TokenType.KEEP: 'KEEP'>, <TokenType.END: 'END'>, <TokenType.REFERENCES: 'REFERENCES'>, <TokenType.CACHE: 'CACHE'>, <TokenType.TEMPORARY: 'TEMPORARY'>, <TokenType.UPDATE: 'UPDATE'>, <TokenType.SMALLINT: 'SMALLINT'>, <TokenType.VARIANT: 'VARIANT'>, <TokenType.SEMI: 'SEMI'>, <TokenType.TSTZRANGE: 'TSTZRANGE'>, <TokenType.UUID: 'UUID'>, <TokenType.CURRENT_DATETIME: 'CURRENT_DATETIME'>, <TokenType.DATE: 'DATE'>, <TokenType.LONGBLOB: 'LONGBLOB'>, <TokenType.ALL: 'ALL'>, <TokenType.LOWCARDINALITY: 'LOWCARDINALITY'>, <TokenType.MEDIUMTEXT: 'MEDIUMTEXT'>, <TokenType.FORMAT: 'FORMAT'>, <TokenType.TABLE: 'TABLE'>, <TokenType.IMAGE: 'IMAGE'>, <TokenType.USMALLINT: 'USMALLINT'>, <TokenType.JSONB: 'JSONB'>, <TokenType.VAR: 'VAR'>, <TokenType.UTINYINT: 'UTINYINT'>, <TokenType.TIMESTAMPTZ: 'TIMESTAMPTZ'>, <TokenType.RANGE: 'RANGE'>, <TokenType.ASC: 'ASC'>, <TokenType.MODEL: 'MODEL'>, <TokenType.TIMESTAMP_S: 'TIMESTAMP_S'>, <TokenType.BOOLEAN: 'BOOLEAN'>, <TokenType.OBJECT: 'OBJECT'>, <TokenType.DEFAULT: 'DEFAULT'>, <TokenType.VOLATILE: 'VOLATILE'>, <TokenType.COMMIT: 'COMMIT'>, <TokenType.TINYTEXT: 'TINYTEXT'>, <TokenType.ISNULL: 'ISNULL'>, <TokenType.ENUM16: 'ENUM16'>, <TokenType.TOP: 'TOP'>, <TokenType.UDECIMAL: 'UDECIMAL'>, <TokenType.ANTI: 'ANTI'>, <TokenType.KILL: 'KILL'>, <TokenType.BIGDECIMAL: 'BIGDECIMAL'>, <TokenType.SERIAL: 'SERIAL'>, <TokenType.BINARY: 'BINARY'>, <TokenType.HLLSKETCH: 'HLLSKETCH'>, <TokenType.TINYINT: 'TINYINT'>, <TokenType.HSTORE: 'HSTORE'>, <TokenType.OPERATOR: 'OPERATOR'>, <TokenType.STRUCT: 'STRUCT'>, <TokenType.OBJECT_IDENTIFIER: 'OBJECT_IDENTIFIER'>, <TokenType.PRAGMA: 'PRAGMA'>, <TokenType.REFRESH: 'REFRESH'>, <TokenType.UNIQUEIDENTIFIER: 'UNIQUEIDENTIFIER'>}
SHOW_TRIE: Dict = {}
SET_TRIE: Dict = {'GLOBAL': {0: True}, 'LOCAL': {0: True}, 'SESSION': {0: True}, 'TRANSACTION': {0: True}}
class TSQL.Generator(sqlglot.generator.Generator):
650    class Generator(generator.Generator):
651        LIMIT_IS_TOP = True
652        QUERY_HINTS = False
653        RETURNING_END = False
654        NVL2_SUPPORTED = False
655        ALTER_TABLE_INCLUDE_COLUMN_KEYWORD = False
656        LIMIT_FETCH = "FETCH"
657        COMPUTED_COLUMN_WITH_TYPE = False
658        CTE_RECURSIVE_KEYWORD_REQUIRED = False
659        ENSURE_BOOLS = True
660        NULL_ORDERING_SUPPORTED = False
661        SUPPORTS_SINGLE_ARG_CONCAT = False
662        TABLESAMPLE_SEED_KEYWORD = "REPEATABLE"
663
664        EXPRESSIONS_WITHOUT_NESTED_CTES = {
665            exp.Delete,
666            exp.Insert,
667            exp.Merge,
668            exp.Select,
669            exp.Subquery,
670            exp.Union,
671            exp.Update,
672        }
673
674        TYPE_MAPPING = {
675            **generator.Generator.TYPE_MAPPING,
676            exp.DataType.Type.BOOLEAN: "BIT",
677            exp.DataType.Type.DECIMAL: "NUMERIC",
678            exp.DataType.Type.DATETIME: "DATETIME2",
679            exp.DataType.Type.DOUBLE: "FLOAT",
680            exp.DataType.Type.INT: "INTEGER",
681            exp.DataType.Type.TEXT: "VARCHAR(MAX)",
682            exp.DataType.Type.TIMESTAMP: "DATETIME2",
683            exp.DataType.Type.TIMESTAMPTZ: "DATETIMEOFFSET",
684            exp.DataType.Type.VARIANT: "SQL_VARIANT",
685        }
686
687        TRANSFORMS = {
688            **generator.Generator.TRANSFORMS,
689            exp.AnyValue: any_value_to_max_sql,
690            exp.AutoIncrementColumnConstraint: lambda *_: "IDENTITY",
691            exp.DateAdd: date_delta_sql("DATEADD"),
692            exp.DateDiff: date_delta_sql("DATEDIFF"),
693            exp.CTE: transforms.preprocess([qualify_derived_table_outputs]),
694            exp.CurrentDate: rename_func("GETDATE"),
695            exp.CurrentTimestamp: rename_func("GETDATE"),
696            exp.Extract: rename_func("DATEPART"),
697            exp.GeneratedAsIdentityColumnConstraint: generatedasidentitycolumnconstraint_sql,
698            exp.GetPath: path_to_jsonpath("JSON_VALUE"),
699            exp.GroupConcat: _string_agg_sql,
700            exp.If: rename_func("IIF"),
701            exp.LastDay: lambda self, e: self.func("EOMONTH", e.this),
702            exp.Length: rename_func("LEN"),
703            exp.Max: max_or_greatest,
704            exp.MD5: lambda self, e: self.func("HASHBYTES", exp.Literal.string("MD5"), e.this),
705            exp.Min: min_or_least,
706            exp.NumberToStr: _format_sql,
707            exp.ParseJSON: lambda self, e: self.sql(e, "this"),
708            exp.Select: transforms.preprocess(
709                [
710                    transforms.eliminate_distinct_on,
711                    transforms.eliminate_semi_and_anti_joins,
712                    transforms.eliminate_qualify,
713                ]
714            ),
715            exp.Subquery: transforms.preprocess([qualify_derived_table_outputs]),
716            exp.SHA: lambda self, e: self.func("HASHBYTES", exp.Literal.string("SHA1"), e.this),
717            exp.SHA2: lambda self, e: self.func(
718                "HASHBYTES", exp.Literal.string(f"SHA2_{e.args.get('length', 256)}"), e.this
719            ),
720            exp.TemporaryProperty: lambda self, e: "",
721            exp.TimeStrToTime: timestrtotime_sql,
722            exp.TimeToStr: _format_sql,
723            exp.TsOrDsAdd: date_delta_sql("DATEADD", cast=True),
724            exp.TsOrDsDiff: date_delta_sql("DATEDIFF"),
725        }
726
727        TRANSFORMS.pop(exp.ReturnsProperty)
728
729        PROPERTIES_LOCATION = {
730            **generator.Generator.PROPERTIES_LOCATION,
731            exp.VolatileProperty: exp.Properties.Location.UNSUPPORTED,
732        }
733
734        def lateral_op(self, expression: exp.Lateral) -> str:
735            cross_apply = expression.args.get("cross_apply")
736            if cross_apply is True:
737                return "CROSS APPLY"
738            if cross_apply is False:
739                return "OUTER APPLY"
740
741            # TODO: perhaps we can check if the parent is a Join and transpile it appropriately
742            self.unsupported("LATERAL clause is not supported.")
743            return "LATERAL"
744
745        def timefromparts_sql(self, expression: exp.TimeFromParts) -> str:
746            nano = expression.args.get("nano")
747            if nano is not None:
748                nano.pop()
749                self.unsupported("Specifying nanoseconds is not supported in TIMEFROMPARTS.")
750
751            if expression.args.get("fractions") is None:
752                expression.set("fractions", exp.Literal.number(0))
753            if expression.args.get("precision") is None:
754                expression.set("precision", exp.Literal.number(0))
755
756            return rename_func("TIMEFROMPARTS")(self, expression)
757
758        def timestampfromparts_sql(self, expression: exp.TimestampFromParts) -> str:
759            zone = expression.args.get("zone")
760            if zone is not None:
761                zone.pop()
762                self.unsupported("Time zone is not supported in DATETIMEFROMPARTS.")
763
764            nano = expression.args.get("nano")
765            if nano is not None:
766                nano.pop()
767                self.unsupported("Specifying nanoseconds is not supported in DATETIMEFROMPARTS.")
768
769            if expression.args.get("milli") is None:
770                expression.set("milli", exp.Literal.number(0))
771
772            return rename_func("DATETIMEFROMPARTS")(self, expression)
773
774        def set_operation(self, expression: exp.Union, op: str) -> str:
775            limit = expression.args.get("limit")
776            if limit:
777                return self.sql(expression.limit(limit.pop(), copy=False))
778
779            return super().set_operation(expression, op)
780
781        def setitem_sql(self, expression: exp.SetItem) -> str:
782            this = expression.this
783            if isinstance(this, exp.EQ) and not isinstance(this.left, exp.Parameter):
784                # T-SQL does not use '=' in SET command, except when the LHS is a variable.
785                return f"{self.sql(this.left)} {self.sql(this.right)}"
786
787            return super().setitem_sql(expression)
788
789        def boolean_sql(self, expression: exp.Boolean) -> str:
790            if type(expression.parent) in BIT_TYPES:
791                return "1" if expression.this else "0"
792
793            return "(1 = 1)" if expression.this else "(1 = 0)"
794
795        def is_sql(self, expression: exp.Is) -> str:
796            if isinstance(expression.expression, exp.Boolean):
797                return self.binary(expression, "=")
798            return self.binary(expression, "IS")
799
800        def createable_sql(self, expression: exp.Create, locations: t.DefaultDict) -> str:
801            sql = self.sql(expression, "this")
802            properties = expression.args.get("properties")
803
804            if sql[:1] != "#" and any(
805                isinstance(prop, exp.TemporaryProperty)
806                for prop in (properties.expressions if properties else [])
807            ):
808                sql = f"#{sql}"
809
810            return sql
811
812        def create_sql(self, expression: exp.Create) -> str:
813            kind = self.sql(expression, "kind").upper()
814            exists = expression.args.pop("exists", None)
815            sql = super().create_sql(expression)
816
817            table = expression.find(exp.Table)
818
819            # Convert CTAS statement to SELECT .. INTO ..
820            if kind == "TABLE" and expression.expression:
821                ctas_with = expression.expression.args.get("with")
822                if ctas_with:
823                    ctas_with = ctas_with.pop()
824
825                subquery = expression.expression
826                if isinstance(subquery, exp.Subqueryable):
827                    subquery = subquery.subquery()
828
829                select_into = exp.select("*").from_(exp.alias_(subquery, "temp", table=True))
830                select_into.set("into", exp.Into(this=table))
831                select_into.set("with", ctas_with)
832
833                sql = self.sql(select_into)
834
835            if exists:
836                identifier = self.sql(exp.Literal.string(exp.table_name(table) if table else ""))
837                sql = self.sql(exp.Literal.string(sql))
838                if kind == "SCHEMA":
839                    sql = f"""IF NOT EXISTS (SELECT * FROM information_schema.schemata WHERE schema_name = {identifier}) EXEC({sql})"""
840                elif kind == "TABLE":
841                    assert table
842                    where = exp.and_(
843                        exp.column("table_name").eq(table.name),
844                        exp.column("table_schema").eq(table.db) if table.db else None,
845                        exp.column("table_catalog").eq(table.catalog) if table.catalog else None,
846                    )
847                    sql = f"""IF NOT EXISTS (SELECT * FROM information_schema.tables WHERE {where}) EXEC({sql})"""
848                elif kind == "INDEX":
849                    index = self.sql(exp.Literal.string(expression.this.text("this")))
850                    sql = f"""IF NOT EXISTS (SELECT * FROM sys.indexes WHERE object_id = object_id({identifier}) AND name = {index}) EXEC({sql})"""
851            elif expression.args.get("replace"):
852                sql = sql.replace("CREATE OR REPLACE ", "CREATE OR ALTER ", 1)
853
854            return self.prepend_ctes(expression, sql)
855
856        def offset_sql(self, expression: exp.Offset) -> str:
857            return f"{super().offset_sql(expression)} ROWS"
858
859        def version_sql(self, expression: exp.Version) -> str:
860            name = "SYSTEM_TIME" if expression.name == "TIMESTAMP" else expression.name
861            this = f"FOR {name}"
862            expr = expression.expression
863            kind = expression.text("kind")
864            if kind in ("FROM", "BETWEEN"):
865                args = expr.expressions
866                sep = "TO" if kind == "FROM" else "AND"
867                expr_sql = f"{self.sql(seq_get(args, 0))} {sep} {self.sql(seq_get(args, 1))}"
868            else:
869                expr_sql = self.sql(expr)
870
871            expr_sql = f" {expr_sql}" if expr_sql else ""
872            return f"{this} {kind}{expr_sql}"
873
874        def returnsproperty_sql(self, expression: exp.ReturnsProperty) -> str:
875            table = expression.args.get("table")
876            table = f"{table} " if table else ""
877            return f"RETURNS {table}{self.sql(expression, 'this')}"
878
879        def returning_sql(self, expression: exp.Returning) -> str:
880            into = self.sql(expression, "into")
881            into = self.seg(f"INTO {into}") if into else ""
882            return f"{self.seg('OUTPUT')} {self.expressions(expression, flat=True)}{into}"
883
884        def transaction_sql(self, expression: exp.Transaction) -> str:
885            this = self.sql(expression, "this")
886            this = f" {this}" if this else ""
887            mark = self.sql(expression, "mark")
888            mark = f" WITH MARK {mark}" if mark else ""
889            return f"BEGIN TRANSACTION{this}{mark}"
890
891        def commit_sql(self, expression: exp.Commit) -> str:
892            this = self.sql(expression, "this")
893            this = f" {this}" if this else ""
894            durability = expression.args.get("durability")
895            durability = (
896                f" WITH (DELAYED_DURABILITY = {'ON' if durability else 'OFF'})"
897                if durability is not None
898                else ""
899            )
900            return f"COMMIT TRANSACTION{this}{durability}"
901
902        def rollback_sql(self, expression: exp.Rollback) -> str:
903            this = self.sql(expression, "this")
904            this = f" {this}" if this else ""
905            return f"ROLLBACK TRANSACTION{this}"
906
907        def identifier_sql(self, expression: exp.Identifier) -> str:
908            identifier = super().identifier_sql(expression)
909
910            if expression.args.get("global"):
911                identifier = f"##{identifier}"
912            elif expression.args.get("temporary"):
913                identifier = f"#{identifier}"
914
915            return identifier
916
917        def constraint_sql(self, expression: exp.Constraint) -> str:
918            this = self.sql(expression, "this")
919            expressions = self.expressions(expression, flat=True, sep=" ")
920            return f"CONSTRAINT {this} {expressions}"

Generator converts a given syntax tree to the corresponding SQL string.

Arguments:
  • pretty: Whether or not to format the produced SQL string. Default: False.
  • identify: Determines when an identifier should be quoted. Possible values are: False (default): Never quote, except in cases where it's mandatory by the dialect. True or 'always': Always quote. 'safe': Only quote identifiers that are case insensitive.
  • normalize: Whether or not to normalize identifiers to lowercase. Default: False.
  • pad: Determines the pad size in a formatted string. Default: 2.
  • indent: Determines the indentation size in a formatted string. Default: 2.
  • normalize_functions: Whether or not to normalize all function names. Possible values are: "upper" or True (default): Convert names to uppercase. "lower": Convert names to lowercase. False: Disables function name normalization.
  • unsupported_level: Determines the generator's behavior when it encounters unsupported expressions. Default ErrorLevel.WARN.
  • max_unsupported: Maximum number of unsupported messages to include in a raised UnsupportedError. This is only relevant if unsupported_level is ErrorLevel.RAISE. Default: 3
  • leading_comma: Determines whether or not the comma is leading or trailing in select expressions. This is only relevant when generating in pretty mode. Default: False
  • max_text_width: The max number of characters in a segment before creating new lines in pretty mode. The default is on the smaller end because the length only represents a segment and not the true line length. Default: 80
  • comments: Whether or not to preserve comments in the output SQL code. Default: True
LIMIT_IS_TOP = True
QUERY_HINTS = False
RETURNING_END = False
NVL2_SUPPORTED = False
ALTER_TABLE_INCLUDE_COLUMN_KEYWORD = False
LIMIT_FETCH = 'FETCH'
COMPUTED_COLUMN_WITH_TYPE = False
CTE_RECURSIVE_KEYWORD_REQUIRED = False
ENSURE_BOOLS = True
NULL_ORDERING_SUPPORTED = False
SUPPORTS_SINGLE_ARG_CONCAT = False
TABLESAMPLE_SEED_KEYWORD = 'REPEATABLE'
TYPE_MAPPING = {<Type.NCHAR: 'NCHAR'>: 'CHAR', <Type.NVARCHAR: 'NVARCHAR'>: 'VARCHAR', <Type.MEDIUMTEXT: 'MEDIUMTEXT'>: 'TEXT', <Type.LONGTEXT: 'LONGTEXT'>: 'TEXT', <Type.TINYTEXT: 'TINYTEXT'>: 'TEXT', <Type.MEDIUMBLOB: 'MEDIUMBLOB'>: 'BLOB', <Type.LONGBLOB: 'LONGBLOB'>: 'BLOB', <Type.TINYBLOB: 'TINYBLOB'>: 'BLOB', <Type.INET: 'INET'>: 'INET', <Type.BOOLEAN: 'BOOLEAN'>: 'BIT', <Type.DECIMAL: 'DECIMAL'>: 'NUMERIC', <Type.DATETIME: 'DATETIME'>: 'DATETIME2', <Type.DOUBLE: 'DOUBLE'>: 'FLOAT', <Type.INT: 'INT'>: 'INTEGER', <Type.TEXT: 'TEXT'>: 'VARCHAR(MAX)', <Type.TIMESTAMP: 'TIMESTAMP'>: 'DATETIME2', <Type.TIMESTAMPTZ: 'TIMESTAMPTZ'>: 'DATETIMEOFFSET', <Type.VARIANT: 'VARIANT'>: 'SQL_VARIANT'}
TRANSFORMS = {<class 'sqlglot.expressions.DateAdd'>: <function date_delta_sql.<locals>._delta_sql>, <class 'sqlglot.expressions.CaseSpecificColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.CharacterSetColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.CharacterSetProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.CheckColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.ClusteredColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.CollateColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.AutoRefreshProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.CopyGrantsProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.CommentColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.DateFormatColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.DefaultColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.EncodeColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.ExecuteAsProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.ExternalProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.HeapProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.InlineLengthColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.InputModelProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.IntervalSpan'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.LanguageProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.LocationProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.LogProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.MaterializedProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.NoPrimaryIndexProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.NonClusteredColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.NotForReplicationColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.OnCommitProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.OnProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.OnUpdateColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.OutputModelProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.PathColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.RemoteWithConnectionModelProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.SampleProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.SetProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.SettingsProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.SqlSecurityProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.StabilityProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.TemporaryProperty'>: <function TSQL.Generator.<lambda>>, <class 'sqlglot.expressions.ToTableProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.TransientProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.TransformModelProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.TitleColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.UppercaseColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.VarMap'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.VolatileProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.WithJournalTableProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.AnyValue'>: <function any_value_to_max_sql>, <class 'sqlglot.expressions.AutoIncrementColumnConstraint'>: <function TSQL.Generator.<lambda>>, <class 'sqlglot.expressions.DateDiff'>: <function date_delta_sql.<locals>._delta_sql>, <class 'sqlglot.expressions.CTE'>: <function preprocess.<locals>._to_sql>, <class 'sqlglot.expressions.CurrentDate'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.CurrentTimestamp'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.Extract'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.GeneratedAsIdentityColumnConstraint'>: <function generatedasidentitycolumnconstraint_sql>, <class 'sqlglot.expressions.GetPath'>: <function path_to_jsonpath.<locals>._transform>, <class 'sqlglot.expressions.GroupConcat'>: <function _string_agg_sql>, <class 'sqlglot.expressions.If'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.LastDay'>: <function TSQL.Generator.<lambda>>, <class 'sqlglot.expressions.Length'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.Max'>: <function max_or_greatest>, <class 'sqlglot.expressions.MD5'>: <function TSQL.Generator.<lambda>>, <class 'sqlglot.expressions.Min'>: <function min_or_least>, <class 'sqlglot.expressions.NumberToStr'>: <function _format_sql>, <class 'sqlglot.expressions.ParseJSON'>: <function TSQL.Generator.<lambda>>, <class 'sqlglot.expressions.Select'>: <function preprocess.<locals>._to_sql>, <class 'sqlglot.expressions.Subquery'>: <function preprocess.<locals>._to_sql>, <class 'sqlglot.expressions.SHA'>: <function TSQL.Generator.<lambda>>, <class 'sqlglot.expressions.SHA2'>: <function TSQL.Generator.<lambda>>, <class 'sqlglot.expressions.TimeStrToTime'>: <function timestrtotime_sql>, <class 'sqlglot.expressions.TimeToStr'>: <function _format_sql>, <class 'sqlglot.expressions.TsOrDsAdd'>: <function date_delta_sql.<locals>._delta_sql>, <class 'sqlglot.expressions.TsOrDsDiff'>: <function date_delta_sql.<locals>._delta_sql>}
PROPERTIES_LOCATION = {<class 'sqlglot.expressions.AlgorithmProperty'>: <Location.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.AutoIncrementProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.AutoRefreshProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.BlockCompressionProperty'>: <Location.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.CharacterSetProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.ChecksumProperty'>: <Location.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.CollateProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.CopyGrantsProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.Cluster'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.ClusteredByProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.DataBlocksizeProperty'>: <Location.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.DefinerProperty'>: <Location.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.DictRange'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.DictProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.DistKeyProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.DistStyleProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.EngineProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.ExecuteAsProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.ExternalProperty'>: <Location.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.FallbackProperty'>: <Location.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.FileFormatProperty'>: <Location.POST_WITH: 'POST_WITH'>, <class 'sqlglot.expressions.FreespaceProperty'>: <Location.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.HeapProperty'>: <Location.POST_WITH: 'POST_WITH'>, <class 'sqlglot.expressions.InputModelProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.IsolatedLoadingProperty'>: <Location.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.JournalProperty'>: <Location.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.LanguageProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.LikeProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.LocationProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.LockingProperty'>: <Location.POST_ALIAS: 'POST_ALIAS'>, <class 'sqlglot.expressions.LogProperty'>: <Location.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.MaterializedProperty'>: <Location.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.MergeBlockRatioProperty'>: <Location.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.NoPrimaryIndexProperty'>: <Location.POST_EXPRESSION: 'POST_EXPRESSION'>, <class 'sqlglot.expressions.OnProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.OnCommitProperty'>: <Location.POST_EXPRESSION: 'POST_EXPRESSION'>, <class 'sqlglot.expressions.Order'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.OutputModelProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.PartitionedByProperty'>: <Location.POST_WITH: 'POST_WITH'>, <class 'sqlglot.expressions.PartitionedOfProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.PrimaryKey'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.Property'>: <Location.POST_WITH: 'POST_WITH'>, <class 'sqlglot.expressions.RemoteWithConnectionModelProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.ReturnsProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.RowFormatProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.RowFormatDelimitedProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.RowFormatSerdeProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.SampleProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.SchemaCommentProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.SerdeProperties'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.Set'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.SettingsProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.SetProperty'>: <Location.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.SortKeyProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.SqlSecurityProperty'>: <Location.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.StabilityProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.TemporaryProperty'>: <Location.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.ToTableProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.TransientProperty'>: <Location.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.TransformModelProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.MergeTreeTTL'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.VolatileProperty'>: <Location.UNSUPPORTED: 'UNSUPPORTED'>, <class 'sqlglot.expressions.WithDataProperty'>: <Location.POST_EXPRESSION: 'POST_EXPRESSION'>, <class 'sqlglot.expressions.WithJournalTableProperty'>: <Location.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.WithSystemVersioningProperty'>: <Location.POST_SCHEMA: 'POST_SCHEMA'>}
def lateral_op(self, expression: sqlglot.expressions.Lateral) -> str:
734        def lateral_op(self, expression: exp.Lateral) -> str:
735            cross_apply = expression.args.get("cross_apply")
736            if cross_apply is True:
737                return "CROSS APPLY"
738            if cross_apply is False:
739                return "OUTER APPLY"
740
741            # TODO: perhaps we can check if the parent is a Join and transpile it appropriately
742            self.unsupported("LATERAL clause is not supported.")
743            return "LATERAL"
def timefromparts_sql(self, expression: sqlglot.expressions.TimeFromParts) -> str:
745        def timefromparts_sql(self, expression: exp.TimeFromParts) -> str:
746            nano = expression.args.get("nano")
747            if nano is not None:
748                nano.pop()
749                self.unsupported("Specifying nanoseconds is not supported in TIMEFROMPARTS.")
750
751            if expression.args.get("fractions") is None:
752                expression.set("fractions", exp.Literal.number(0))
753            if expression.args.get("precision") is None:
754                expression.set("precision", exp.Literal.number(0))
755
756            return rename_func("TIMEFROMPARTS")(self, expression)
def timestampfromparts_sql(self, expression: sqlglot.expressions.TimestampFromParts) -> str:
758        def timestampfromparts_sql(self, expression: exp.TimestampFromParts) -> str:
759            zone = expression.args.get("zone")
760            if zone is not None:
761                zone.pop()
762                self.unsupported("Time zone is not supported in DATETIMEFROMPARTS.")
763
764            nano = expression.args.get("nano")
765            if nano is not None:
766                nano.pop()
767                self.unsupported("Specifying nanoseconds is not supported in DATETIMEFROMPARTS.")
768
769            if expression.args.get("milli") is None:
770                expression.set("milli", exp.Literal.number(0))
771
772            return rename_func("DATETIMEFROMPARTS")(self, expression)
def set_operation(self, expression: sqlglot.expressions.Union, op: str) -> str:
774        def set_operation(self, expression: exp.Union, op: str) -> str:
775            limit = expression.args.get("limit")
776            if limit:
777                return self.sql(expression.limit(limit.pop(), copy=False))
778
779            return super().set_operation(expression, op)
def setitem_sql(self, expression: sqlglot.expressions.SetItem) -> str:
781        def setitem_sql(self, expression: exp.SetItem) -> str:
782            this = expression.this
783            if isinstance(this, exp.EQ) and not isinstance(this.left, exp.Parameter):
784                # T-SQL does not use '=' in SET command, except when the LHS is a variable.
785                return f"{self.sql(this.left)} {self.sql(this.right)}"
786
787            return super().setitem_sql(expression)
def boolean_sql(self, expression: sqlglot.expressions.Boolean) -> str:
789        def boolean_sql(self, expression: exp.Boolean) -> str:
790            if type(expression.parent) in BIT_TYPES:
791                return "1" if expression.this else "0"
792
793            return "(1 = 1)" if expression.this else "(1 = 0)"
def is_sql(self, expression: sqlglot.expressions.Is) -> str:
795        def is_sql(self, expression: exp.Is) -> str:
796            if isinstance(expression.expression, exp.Boolean):
797                return self.binary(expression, "=")
798            return self.binary(expression, "IS")
def createable_sql( self, expression: sqlglot.expressions.Create, locations: DefaultDict) -> str:
800        def createable_sql(self, expression: exp.Create, locations: t.DefaultDict) -> str:
801            sql = self.sql(expression, "this")
802            properties = expression.args.get("properties")
803
804            if sql[:1] != "#" and any(
805                isinstance(prop, exp.TemporaryProperty)
806                for prop in (properties.expressions if properties else [])
807            ):
808                sql = f"#{sql}"
809
810            return sql
def create_sql(self, expression: sqlglot.expressions.Create) -> str:
812        def create_sql(self, expression: exp.Create) -> str:
813            kind = self.sql(expression, "kind").upper()
814            exists = expression.args.pop("exists", None)
815            sql = super().create_sql(expression)
816
817            table = expression.find(exp.Table)
818
819            # Convert CTAS statement to SELECT .. INTO ..
820            if kind == "TABLE" and expression.expression:
821                ctas_with = expression.expression.args.get("with")
822                if ctas_with:
823                    ctas_with = ctas_with.pop()
824
825                subquery = expression.expression
826                if isinstance(subquery, exp.Subqueryable):
827                    subquery = subquery.subquery()
828
829                select_into = exp.select("*").from_(exp.alias_(subquery, "temp", table=True))
830                select_into.set("into", exp.Into(this=table))
831                select_into.set("with", ctas_with)
832
833                sql = self.sql(select_into)
834
835            if exists:
836                identifier = self.sql(exp.Literal.string(exp.table_name(table) if table else ""))
837                sql = self.sql(exp.Literal.string(sql))
838                if kind == "SCHEMA":
839                    sql = f"""IF NOT EXISTS (SELECT * FROM information_schema.schemata WHERE schema_name = {identifier}) EXEC({sql})"""
840                elif kind == "TABLE":
841                    assert table
842                    where = exp.and_(
843                        exp.column("table_name").eq(table.name),
844                        exp.column("table_schema").eq(table.db) if table.db else None,
845                        exp.column("table_catalog").eq(table.catalog) if table.catalog else None,
846                    )
847                    sql = f"""IF NOT EXISTS (SELECT * FROM information_schema.tables WHERE {where}) EXEC({sql})"""
848                elif kind == "INDEX":
849                    index = self.sql(exp.Literal.string(expression.this.text("this")))
850                    sql = f"""IF NOT EXISTS (SELECT * FROM sys.indexes WHERE object_id = object_id({identifier}) AND name = {index}) EXEC({sql})"""
851            elif expression.args.get("replace"):
852                sql = sql.replace("CREATE OR REPLACE ", "CREATE OR ALTER ", 1)
853
854            return self.prepend_ctes(expression, sql)
def offset_sql(self, expression: sqlglot.expressions.Offset) -> str:
856        def offset_sql(self, expression: exp.Offset) -> str:
857            return f"{super().offset_sql(expression)} ROWS"
def version_sql(self, expression: sqlglot.expressions.Version) -> str:
859        def version_sql(self, expression: exp.Version) -> str:
860            name = "SYSTEM_TIME" if expression.name == "TIMESTAMP" else expression.name
861            this = f"FOR {name}"
862            expr = expression.expression
863            kind = expression.text("kind")
864            if kind in ("FROM", "BETWEEN"):
865                args = expr.expressions
866                sep = "TO" if kind == "FROM" else "AND"
867                expr_sql = f"{self.sql(seq_get(args, 0))} {sep} {self.sql(seq_get(args, 1))}"
868            else:
869                expr_sql = self.sql(expr)
870
871            expr_sql = f" {expr_sql}" if expr_sql else ""
872            return f"{this} {kind}{expr_sql}"
def returnsproperty_sql(self, expression: sqlglot.expressions.ReturnsProperty) -> str:
874        def returnsproperty_sql(self, expression: exp.ReturnsProperty) -> str:
875            table = expression.args.get("table")
876            table = f"{table} " if table else ""
877            return f"RETURNS {table}{self.sql(expression, 'this')}"
def returning_sql(self, expression: sqlglot.expressions.Returning) -> str:
879        def returning_sql(self, expression: exp.Returning) -> str:
880            into = self.sql(expression, "into")
881            into = self.seg(f"INTO {into}") if into else ""
882            return f"{self.seg('OUTPUT')} {self.expressions(expression, flat=True)}{into}"
def transaction_sql(self, expression: sqlglot.expressions.Transaction) -> str:
884        def transaction_sql(self, expression: exp.Transaction) -> str:
885            this = self.sql(expression, "this")
886            this = f" {this}" if this else ""
887            mark = self.sql(expression, "mark")
888            mark = f" WITH MARK {mark}" if mark else ""
889            return f"BEGIN TRANSACTION{this}{mark}"
def commit_sql(self, expression: sqlglot.expressions.Commit) -> str:
891        def commit_sql(self, expression: exp.Commit) -> str:
892            this = self.sql(expression, "this")
893            this = f" {this}" if this else ""
894            durability = expression.args.get("durability")
895            durability = (
896                f" WITH (DELAYED_DURABILITY = {'ON' if durability else 'OFF'})"
897                if durability is not None
898                else ""
899            )
900            return f"COMMIT TRANSACTION{this}{durability}"
def rollback_sql(self, expression: sqlglot.expressions.Rollback) -> str:
902        def rollback_sql(self, expression: exp.Rollback) -> str:
903            this = self.sql(expression, "this")
904            this = f" {this}" if this else ""
905            return f"ROLLBACK TRANSACTION{this}"
def identifier_sql(self, expression: sqlglot.expressions.Identifier) -> str:
907        def identifier_sql(self, expression: exp.Identifier) -> str:
908            identifier = super().identifier_sql(expression)
909
910            if expression.args.get("global"):
911                identifier = f"##{identifier}"
912            elif expression.args.get("temporary"):
913                identifier = f"#{identifier}"
914
915            return identifier
def constraint_sql(self, expression: sqlglot.expressions.Constraint) -> str:
917        def constraint_sql(self, expression: exp.Constraint) -> str:
918            this = self.sql(expression, "this")
919            expressions = self.expressions(expression, flat=True, sep=" ")
920            return f"CONSTRAINT {this} {expressions}"
SELECT_KINDS: Tuple[str, ...] = ()
Inherited Members
sqlglot.generator.Generator
Generator
LOCKING_READS_SUPPORTED
EXPLICIT_UNION
WRAP_DERIVED_VALUES
CREATE_FUNCTION_RETURN_AS
MATCHED_BY_SOURCE
SINGLE_STRING_INTERVAL
INTERVAL_ALLOWS_PLURAL_FORM
LIMIT_ONLY_LITERALS
RENAME_TABLE_WITH_DB
GROUPINGS_SEP
INDEX_ON
JOIN_HINTS
TABLE_HINTS
QUERY_HINT_SEP
IS_BOOL_ALLOWED
DUPLICATE_KEY_UPDATE_WITH_SET
COLUMN_JOIN_MARKS_SUPPORTED
EXTRACT_ALLOWS_QUOTES
TZ_TO_WITH_TIME_ZONE
VALUES_AS_TABLE
UNNEST_WITH_ORDINALITY
AGGREGATE_FILTER_SUPPORTED
SEMI_ANTI_JOIN_WITH_SIDE
SUPPORTS_TABLE_COPY
TABLESAMPLE_REQUIRES_PARENS
TABLESAMPLE_SIZE_IS_ROWS
TABLESAMPLE_KEYWORDS
TABLESAMPLE_WITH_METHOD
COLLATE_IS_FUNC
DATA_TYPE_SPECIFIERS_ALLOWED
LAST_DAY_SUPPORTS_DATE_PART
STAR_MAPPING
TIME_PART_SINGULARS
TOKEN_MAPPING
STRUCT_DELIMITER
PARAMETER_TOKEN
RESERVED_KEYWORDS
WITH_SEPARATED_COMMENTS
EXCLUDE_COMMENTS
UNWRAPPED_INTERVAL_VALUES
KEY_VALUE_DEFINITIONS
SENTINEL_LINE_BREAK
pretty
identify
normalize
pad
unsupported_level
max_unsupported
leading_comma
max_text_width
comments
dialect
normalize_functions
unsupported_messages
generate
preprocess
unsupported
sep
seg
pad_comment
maybe_comment
wrap
no_identify
normalize_func
indent
sql
uncache_sql
cache_sql
characterset_sql
column_sql
columnposition_sql
columndef_sql
columnconstraint_sql
computedcolumnconstraint_sql
autoincrementcolumnconstraint_sql
compresscolumnconstraint_sql
generatedasidentitycolumnconstraint_sql
generatedasrowcolumnconstraint_sql
periodforsystemtimeconstraint_sql
notnullcolumnconstraint_sql
transformcolumnconstraint_sql
primarykeycolumnconstraint_sql
uniquecolumnconstraint_sql
clone_sql
describe_sql
prepend_ctes
with_sql
cte_sql
tablealias_sql
bitstring_sql
hexstring_sql
bytestring_sql
unicodestring_sql
rawstring_sql
datatypeparam_sql
datatype_sql
directory_sql
delete_sql
drop_sql
except_sql
except_op
fetch_sql
filter_sql
hint_sql
index_sql
inputoutputformat_sql
national_sql
partition_sql
properties_sql
root_properties
properties
with_properties
locate_properties
property_name
property_sql
likeproperty_sql
fallbackproperty_sql
journalproperty_sql
freespaceproperty_sql
checksumproperty_sql
mergeblockratioproperty_sql
datablocksizeproperty_sql
blockcompressionproperty_sql
isolatedloadingproperty_sql
partitionboundspec_sql
partitionedofproperty_sql
lockingproperty_sql
withdataproperty_sql
withsystemversioningproperty_sql
insert_sql
intersect_sql
intersect_op
introducer_sql
kill_sql
pseudotype_sql
objectidentifier_sql
onconflict_sql
rowformatdelimitedproperty_sql
withtablehint_sql
indextablehint_sql
historicaldata_sql
table_sql
tablesample_sql
pivot_sql
tuple_sql
update_sql
values_sql
var_sql
into_sql
from_sql
group_sql
having_sql
connect_sql
prior_sql
join_sql
lambda_sql
lateral_sql
limit_sql
set_sql
pragma_sql
lock_sql
literal_sql
escape_str
loaddata_sql
null_sql
order_sql
withfill_sql
cluster_sql
distribute_sql
sort_sql
ordered_sql
matchrecognize_sql
query_modifiers
offset_limit_modifiers
after_having_modifiers
after_limit_modifiers
select_sql
schema_sql
schema_columns_sql
star_sql
parameter_sql
sessionparameter_sql
placeholder_sql
subquery_sql
qualify_sql
union_sql
union_op
unnest_sql
where_sql
window_sql
partition_by_sql
windowspec_sql
withingroup_sql
between_sql
bracket_sql
all_sql
any_sql
exists_sql
case_sql
nextvaluefor_sql
extract_sql
trim_sql
convert_concat_args
concat_sql
concatws_sql
check_sql
foreignkey_sql
primarykey_sql
if_sql
matchagainst_sql
jsonkeyvalue_sql
formatjson_sql
jsonobject_sql
jsonarray_sql
jsonarrayagg_sql
jsoncolumndef_sql
jsonschema_sql
jsontable_sql
openjsoncolumndef_sql
openjson_sql
in_sql
in_unnest_op
interval_sql
return_sql
reference_sql
anonymous_sql
paren_sql
neg_sql
not_sql
alias_sql
aliases_sql
atindex_sql
attimezone_sql
add_sql
and_sql
xor_sql
connector_sql
bitwiseand_sql
bitwiseleftshift_sql
bitwisenot_sql
bitwiseor_sql
bitwiserightshift_sql
bitwisexor_sql
cast_sql
currentdate_sql
collate_sql
command_sql
comment_sql
mergetreettlaction_sql
mergetreettl_sql
altercolumn_sql
renametable_sql
altertable_sql
add_column_sql
droppartition_sql
addconstraint_sql
distinct_sql
ignorenulls_sql
respectnulls_sql
intdiv_sql
dpipe_sql
div_sql
overlaps_sql
distance_sql
dot_sql
eq_sql
propertyeq_sql
escape_sql
glob_sql
gt_sql
gte_sql
ilike_sql
ilikeany_sql
like_sql
likeany_sql
similarto_sql
lt_sql
lte_sql
mod_sql
mul_sql
neq_sql
nullsafeeq_sql
nullsafeneq_sql
or_sql
slice_sql
sub_sql
trycast_sql
log_sql
use_sql
binary
function_fallback_sql
func
format_args
text_width
format_time
expressions
op_expressions
naked_property
tag_sql
token_sql
userdefinedfunction_sql
joinhint_sql
kwarg_sql
when_sql
merge_sql
tochar_sql
dictproperty_sql
dictrange_sql
dictsubproperty_sql
oncluster_sql
clusteredbyproperty_sql
anyvalue_sql
querytransform_sql
indexconstraintoption_sql
indexcolumnconstraint_sql
nvl2_sql
comprehension_sql
columnprefix_sql
opclass_sql
predict_sql
forin_sql
refresh_sql
operator_sql
toarray_sql
tsordstotime_sql
tsordstodate_sql
unixdate_sql
lastday_sql