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 any_value_to_max_sql, 11 generatedasidentitycolumnconstraint_sql, 12 max_or_greatest, 13 min_or_least, 14 move_insert_cte_sql, 15 parse_date_delta, 16 rename_func, 17 timestrtotime_sql, 18 ts_or_ds_to_date_sql, 19) 20from sqlglot.expressions import DataType 21from sqlglot.helper import seq_get 22from sqlglot.time import format_time 23from sqlglot.tokens import TokenType 24 25if t.TYPE_CHECKING: 26 from sqlglot._typing import E 27 28FULL_FORMAT_TIME_MAPPING = { 29 "weekday": "%A", 30 "dw": "%A", 31 "w": "%A", 32 "month": "%B", 33 "mm": "%B", 34 "m": "%B", 35} 36 37DATE_DELTA_INTERVAL = { 38 "year": "year", 39 "yyyy": "year", 40 "yy": "year", 41 "quarter": "quarter", 42 "qq": "quarter", 43 "q": "quarter", 44 "month": "month", 45 "mm": "month", 46 "m": "month", 47 "week": "week", 48 "ww": "week", 49 "wk": "week", 50 "day": "day", 51 "dd": "day", 52 "d": "day", 53} 54 55 56DATE_FMT_RE = re.compile("([dD]{1,2})|([mM]{1,2})|([yY]{1,4})|([hH]{1,2})|([sS]{1,2})") 57 58# N = Numeric, C=Currency 59TRANSPILE_SAFE_NUMBER_FMT = {"N", "C"} 60 61DEFAULT_START_DATE = datetime.date(1900, 1, 1) 62 63BIT_TYPES = {exp.EQ, exp.NEQ, exp.Is, exp.In, exp.Select, exp.Alias} 64 65 66def _format_time_lambda( 67 exp_class: t.Type[E], full_format_mapping: t.Optional[bool] = None 68) -> t.Callable[[t.List], E]: 69 def _format_time(args: t.List) -> E: 70 assert len(args) == 2 71 72 return exp_class( 73 this=exp.cast(args[1], "datetime"), 74 format=exp.Literal.string( 75 format_time( 76 args[0].name.lower(), 77 {**TSQL.TIME_MAPPING, **FULL_FORMAT_TIME_MAPPING} 78 if full_format_mapping 79 else TSQL.TIME_MAPPING, 80 ) 81 ), 82 ) 83 84 return _format_time 85 86 87def _parse_format(args: t.List) -> exp.Expression: 88 this = seq_get(args, 0) 89 fmt = seq_get(args, 1) 90 culture = seq_get(args, 2) 91 92 number_fmt = fmt and (fmt.name in TRANSPILE_SAFE_NUMBER_FMT or not DATE_FMT_RE.search(fmt.name)) 93 94 if number_fmt: 95 return exp.NumberToStr(this=this, format=fmt, culture=culture) 96 97 if fmt: 98 fmt = exp.Literal.string( 99 format_time(fmt.name, TSQL.FORMAT_TIME_MAPPING) 100 if len(fmt.name) == 1 101 else format_time(fmt.name, TSQL.TIME_MAPPING) 102 ) 103 104 return exp.TimeToStr(this=this, format=fmt, culture=culture) 105 106 107def _parse_eomonth(args: t.List) -> exp.Expression: 108 date = seq_get(args, 0) 109 month_lag = seq_get(args, 1) 110 unit = DATE_DELTA_INTERVAL.get("month") 111 112 if month_lag is None: 113 return exp.LastDateOfMonth(this=date) 114 115 # Remove month lag argument in parser as its compared with the number of arguments of the resulting class 116 args.remove(month_lag) 117 118 return exp.LastDateOfMonth(this=exp.DateAdd(this=date, expression=month_lag, unit=unit)) 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 139def generate_date_delta_with_unit_sql( 140 self: TSQL.Generator, expression: exp.DateAdd | exp.DateDiff 141) -> str: 142 func = "DATEADD" if isinstance(expression, exp.DateAdd) else "DATEDIFF" 143 return self.func(func, expression.text("unit"), expression.expression, expression.this) 144 145 146def _format_sql(self: TSQL.Generator, expression: exp.NumberToStr | exp.TimeToStr) -> str: 147 fmt = ( 148 expression.args["format"] 149 if isinstance(expression, exp.NumberToStr) 150 else exp.Literal.string( 151 format_time( 152 expression.text("format"), 153 t.cast(t.Dict[str, str], TSQL.INVERSE_TIME_MAPPING), 154 ) 155 ) 156 ) 157 return self.func("FORMAT", expression.this, fmt, expression.args.get("culture")) 158 159 160def _string_agg_sql(self: TSQL.Generator, expression: exp.GroupConcat) -> str: 161 expression = expression.copy() 162 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 208class TSQL(Dialect): 209 RESOLVES_IDENTIFIERS_AS_UPPERCASE = None 210 NULL_ORDERING = "nulls_are_small" 211 TIME_FORMAT = "'yyyy-mm-dd hh:mm:ss'" 212 SUPPORTS_SEMI_ANTI_JOIN = False 213 LOG_BASE_FIRST = False 214 215 TIME_MAPPING = { 216 "year": "%Y", 217 "qq": "%q", 218 "q": "%q", 219 "quarter": "%q", 220 "dayofyear": "%j", 221 "day": "%d", 222 "dy": "%d", 223 "y": "%Y", 224 "week": "%W", 225 "ww": "%W", 226 "wk": "%W", 227 "hour": "%h", 228 "hh": "%I", 229 "minute": "%M", 230 "mi": "%M", 231 "n": "%M", 232 "second": "%S", 233 "ss": "%S", 234 "s": "%-S", 235 "millisecond": "%f", 236 "ms": "%f", 237 "weekday": "%W", 238 "dw": "%W", 239 "month": "%m", 240 "mm": "%M", 241 "m": "%-M", 242 "Y": "%Y", 243 "YYYY": "%Y", 244 "YY": "%y", 245 "MMMM": "%B", 246 "MMM": "%b", 247 "MM": "%m", 248 "M": "%-m", 249 "dd": "%d", 250 "d": "%-d", 251 "HH": "%H", 252 "H": "%-H", 253 "h": "%-I", 254 "S": "%f", 255 "yyyy": "%Y", 256 "yy": "%y", 257 } 258 259 CONVERT_FORMAT_MAPPING = { 260 "0": "%b %d %Y %-I:%M%p", 261 "1": "%m/%d/%y", 262 "2": "%y.%m.%d", 263 "3": "%d/%m/%y", 264 "4": "%d.%m.%y", 265 "5": "%d-%m-%y", 266 "6": "%d %b %y", 267 "7": "%b %d, %y", 268 "8": "%H:%M:%S", 269 "9": "%b %d %Y %-I:%M:%S:%f%p", 270 "10": "mm-dd-yy", 271 "11": "yy/mm/dd", 272 "12": "yymmdd", 273 "13": "%d %b %Y %H:%M:ss:%f", 274 "14": "%H:%M:%S:%f", 275 "20": "%Y-%m-%d %H:%M:%S", 276 "21": "%Y-%m-%d %H:%M:%S.%f", 277 "22": "%m/%d/%y %-I:%M:%S %p", 278 "23": "%Y-%m-%d", 279 "24": "%H:%M:%S", 280 "25": "%Y-%m-%d %H:%M:%S.%f", 281 "100": "%b %d %Y %-I:%M%p", 282 "101": "%m/%d/%Y", 283 "102": "%Y.%m.%d", 284 "103": "%d/%m/%Y", 285 "104": "%d.%m.%Y", 286 "105": "%d-%m-%Y", 287 "106": "%d %b %Y", 288 "107": "%b %d, %Y", 289 "108": "%H:%M:%S", 290 "109": "%b %d %Y %-I:%M:%S:%f%p", 291 "110": "%m-%d-%Y", 292 "111": "%Y/%m/%d", 293 "112": "%Y%m%d", 294 "113": "%d %b %Y %H:%M:%S:%f", 295 "114": "%H:%M:%S:%f", 296 "120": "%Y-%m-%d %H:%M:%S", 297 "121": "%Y-%m-%d %H:%M:%S.%f", 298 } 299 300 FORMAT_TIME_MAPPING = { 301 "y": "%B %Y", 302 "d": "%m/%d/%Y", 303 "H": "%-H", 304 "h": "%-I", 305 "s": "%Y-%m-%d %H:%M:%S", 306 "D": "%A,%B,%Y", 307 "f": "%A,%B,%Y %-I:%M %p", 308 "F": "%A,%B,%Y %-I:%M:%S %p", 309 "g": "%m/%d/%Y %-I:%M %p", 310 "G": "%m/%d/%Y %-I:%M:%S %p", 311 "M": "%B %-d", 312 "m": "%B %-d", 313 "O": "%Y-%m-%dT%H:%M:%S", 314 "u": "%Y-%M-%D %H:%M:%S%z", 315 "U": "%A, %B %D, %Y %H:%M:%S%z", 316 "T": "%-I:%M:%S %p", 317 "t": "%-I:%M", 318 "Y": "%a %Y", 319 } 320 321 class Tokenizer(tokens.Tokenizer): 322 IDENTIFIERS = ['"', ("[", "]")] 323 QUOTES = ["'", '"'] 324 HEX_STRINGS = [("0x", ""), ("0X", "")] 325 326 KEYWORDS = { 327 **tokens.Tokenizer.KEYWORDS, 328 "DATETIME2": TokenType.DATETIME, 329 "DATETIMEOFFSET": TokenType.TIMESTAMPTZ, 330 "DECLARE": TokenType.COMMAND, 331 "IMAGE": TokenType.IMAGE, 332 "MONEY": TokenType.MONEY, 333 "NTEXT": TokenType.TEXT, 334 "NVARCHAR(MAX)": TokenType.TEXT, 335 "PRINT": TokenType.COMMAND, 336 "PROC": TokenType.PROCEDURE, 337 "REAL": TokenType.FLOAT, 338 "ROWVERSION": TokenType.ROWVERSION, 339 "SMALLDATETIME": TokenType.DATETIME, 340 "SMALLMONEY": TokenType.SMALLMONEY, 341 "SQL_VARIANT": TokenType.VARIANT, 342 "TOP": TokenType.TOP, 343 "UNIQUEIDENTIFIER": TokenType.UNIQUEIDENTIFIER, 344 "UPDATE STATISTICS": TokenType.COMMAND, 345 "VARCHAR(MAX)": TokenType.TEXT, 346 "XML": TokenType.XML, 347 "OUTPUT": TokenType.RETURNING, 348 "SYSTEM_USER": TokenType.CURRENT_USER, 349 "FOR SYSTEM_TIME": TokenType.TIMESTAMP_SNAPSHOT, 350 } 351 352 class Parser(parser.Parser): 353 SET_REQUIRES_ASSIGNMENT_DELIMITER = False 354 355 FUNCTIONS = { 356 **parser.Parser.FUNCTIONS, 357 "CHARINDEX": lambda args: exp.StrPosition( 358 this=seq_get(args, 1), 359 substr=seq_get(args, 0), 360 position=seq_get(args, 2), 361 ), 362 "DATEADD": parse_date_delta(exp.DateAdd, unit_mapping=DATE_DELTA_INTERVAL), 363 "DATEDIFF": _parse_date_delta(exp.DateDiff, unit_mapping=DATE_DELTA_INTERVAL), 364 "DATENAME": _format_time_lambda(exp.TimeToStr, full_format_mapping=True), 365 "DATEPART": _format_time_lambda(exp.TimeToStr), 366 "EOMONTH": _parse_eomonth, 367 "FORMAT": _parse_format, 368 "GETDATE": exp.CurrentTimestamp.from_arg_list, 369 "HASHBYTES": _parse_hashbytes, 370 "IIF": exp.If.from_arg_list, 371 "ISNULL": exp.Coalesce.from_arg_list, 372 "JSON_VALUE": exp.JSONExtractScalar.from_arg_list, 373 "LEN": exp.Length.from_arg_list, 374 "REPLICATE": exp.Repeat.from_arg_list, 375 "SQUARE": lambda args: exp.Pow(this=seq_get(args, 0), expression=exp.Literal.number(2)), 376 "SYSDATETIME": exp.CurrentTimestamp.from_arg_list, 377 "SUSER_NAME": exp.CurrentUser.from_arg_list, 378 "SUSER_SNAME": exp.CurrentUser.from_arg_list, 379 "SYSTEM_USER": exp.CurrentUser.from_arg_list, 380 } 381 382 JOIN_HINTS = { 383 "LOOP", 384 "HASH", 385 "MERGE", 386 "REMOTE", 387 } 388 389 VAR_LENGTH_DATATYPES = { 390 DataType.Type.NVARCHAR, 391 DataType.Type.VARCHAR, 392 DataType.Type.CHAR, 393 DataType.Type.NCHAR, 394 } 395 396 RETURNS_TABLE_TOKENS = parser.Parser.ID_VAR_TOKENS - { 397 TokenType.TABLE, 398 *parser.Parser.TYPE_TOKENS, 399 } 400 401 STATEMENT_PARSERS = { 402 **parser.Parser.STATEMENT_PARSERS, 403 TokenType.END: lambda self: self._parse_command(), 404 } 405 406 LOG_DEFAULTS_TO_LN = True 407 408 CONCAT_NULL_OUTPUTS_STRING = True 409 410 ALTER_TABLE_ADD_COLUMN_KEYWORD = False 411 412 def _parse_projections(self) -> t.List[exp.Expression]: 413 """ 414 T-SQL supports the syntax alias = expression in the SELECT's projection list, 415 so we transform all parsed Selects to convert their EQ projections into Aliases. 416 417 See: https://learn.microsoft.com/en-us/sql/t-sql/queries/select-clause-transact-sql?view=sql-server-ver16#syntax 418 """ 419 return [ 420 exp.alias_(projection.expression, projection.this.this, copy=False) 421 if isinstance(projection, exp.EQ) and isinstance(projection.this, exp.Column) 422 else projection 423 for projection in super()._parse_projections() 424 ] 425 426 def _parse_commit_or_rollback(self) -> exp.Commit | exp.Rollback: 427 """Applies to SQL Server and Azure SQL Database 428 COMMIT [ { TRAN | TRANSACTION } 429 [ transaction_name | @tran_name_variable ] ] 430 [ WITH ( DELAYED_DURABILITY = { OFF | ON } ) ] 431 432 ROLLBACK { TRAN | TRANSACTION } 433 [ transaction_name | @tran_name_variable 434 | savepoint_name | @savepoint_variable ] 435 """ 436 rollback = self._prev.token_type == TokenType.ROLLBACK 437 438 self._match_texts({"TRAN", "TRANSACTION"}) 439 this = self._parse_id_var() 440 441 if rollback: 442 return self.expression(exp.Rollback, this=this) 443 444 durability = None 445 if self._match_pair(TokenType.WITH, TokenType.L_PAREN): 446 self._match_text_seq("DELAYED_DURABILITY") 447 self._match(TokenType.EQ) 448 449 if self._match_text_seq("OFF"): 450 durability = False 451 else: 452 self._match(TokenType.ON) 453 durability = True 454 455 self._match_r_paren() 456 457 return self.expression(exp.Commit, this=this, durability=durability) 458 459 def _parse_transaction(self) -> exp.Transaction | exp.Command: 460 """Applies to SQL Server and Azure SQL Database 461 BEGIN { TRAN | TRANSACTION } 462 [ { transaction_name | @tran_name_variable } 463 [ WITH MARK [ 'description' ] ] 464 ] 465 """ 466 if self._match_texts(("TRAN", "TRANSACTION")): 467 transaction = self.expression(exp.Transaction, this=self._parse_id_var()) 468 if self._match_text_seq("WITH", "MARK"): 469 transaction.set("mark", self._parse_string()) 470 471 return transaction 472 473 return self._parse_as_command(self._prev) 474 475 def _parse_returns(self) -> exp.ReturnsProperty: 476 table = self._parse_id_var(any_token=False, tokens=self.RETURNS_TABLE_TOKENS) 477 returns = super()._parse_returns() 478 returns.set("table", table) 479 return returns 480 481 def _parse_convert( 482 self, strict: bool, safe: t.Optional[bool] = None 483 ) -> t.Optional[exp.Expression]: 484 to = self._parse_types() 485 self._match(TokenType.COMMA) 486 this = self._parse_conjunction() 487 488 if not to or not this: 489 return None 490 491 # Retrieve length of datatype and override to default if not specified 492 if seq_get(to.expressions, 0) is None and to.this in self.VAR_LENGTH_DATATYPES: 493 to = exp.DataType.build(to.this, expressions=[exp.Literal.number(30)], nested=False) 494 495 # Check whether a conversion with format is applicable 496 if self._match(TokenType.COMMA): 497 format_val = self._parse_number() 498 format_val_name = format_val.name if format_val else "" 499 500 if format_val_name not in TSQL.CONVERT_FORMAT_MAPPING: 501 raise ValueError( 502 f"CONVERT function at T-SQL does not support format style {format_val_name}" 503 ) 504 505 format_norm = exp.Literal.string(TSQL.CONVERT_FORMAT_MAPPING[format_val_name]) 506 507 # Check whether the convert entails a string to date format 508 if to.this == DataType.Type.DATE: 509 return self.expression(exp.StrToDate, this=this, format=format_norm) 510 # Check whether the convert entails a string to datetime format 511 elif to.this == DataType.Type.DATETIME: 512 return self.expression(exp.StrToTime, this=this, format=format_norm) 513 # Check whether the convert entails a date to string format 514 elif to.this in self.VAR_LENGTH_DATATYPES: 515 return self.expression( 516 exp.Cast if strict else exp.TryCast, 517 to=to, 518 this=self.expression(exp.TimeToStr, this=this, format=format_norm), 519 safe=safe, 520 ) 521 elif to.this == DataType.Type.TEXT: 522 return self.expression(exp.TimeToStr, this=this, format=format_norm) 523 524 # Entails a simple cast without any format requirement 525 return self.expression(exp.Cast if strict else exp.TryCast, this=this, to=to, safe=safe) 526 527 def _parse_user_defined_function( 528 self, kind: t.Optional[TokenType] = None 529 ) -> t.Optional[exp.Expression]: 530 this = super()._parse_user_defined_function(kind=kind) 531 532 if ( 533 kind == TokenType.FUNCTION 534 or isinstance(this, exp.UserDefinedFunction) 535 or self._match(TokenType.ALIAS, advance=False) 536 ): 537 return this 538 539 expressions = self._parse_csv(self._parse_function_parameter) 540 return self.expression(exp.UserDefinedFunction, this=this, expressions=expressions) 541 542 def _parse_id_var( 543 self, 544 any_token: bool = True, 545 tokens: t.Optional[t.Collection[TokenType]] = None, 546 ) -> t.Optional[exp.Expression]: 547 is_temporary = self._match(TokenType.HASH) 548 is_global = is_temporary and self._match(TokenType.HASH) 549 550 this = super()._parse_id_var(any_token=any_token, tokens=tokens) 551 if this: 552 if is_global: 553 this.set("global", True) 554 elif is_temporary: 555 this.set("temporary", True) 556 557 return this 558 559 def _parse_create(self) -> exp.Create | exp.Command: 560 create = super()._parse_create() 561 562 if isinstance(create, exp.Create): 563 table = create.this.this if isinstance(create.this, exp.Schema) else create.this 564 if isinstance(table, exp.Table) and table.this.args.get("temporary"): 565 if not create.args.get("properties"): 566 create.set("properties", exp.Properties(expressions=[])) 567 568 create.args["properties"].append("expressions", exp.TemporaryProperty()) 569 570 return create 571 572 def _parse_if(self) -> t.Optional[exp.Expression]: 573 index = self._index 574 575 if self._match_text_seq("OBJECT_ID"): 576 self._parse_wrapped_csv(self._parse_string) 577 if self._match_text_seq("IS", "NOT", "NULL") and self._match(TokenType.DROP): 578 return self._parse_drop(exists=True) 579 self._retreat(index) 580 581 return super()._parse_if() 582 583 def _parse_unique(self) -> exp.UniqueColumnConstraint: 584 return self.expression( 585 exp.UniqueColumnConstraint, 586 this=None 587 if self._curr and self._curr.text.upper() in {"CLUSTERED", "NONCLUSTERED"} 588 else self._parse_schema(self._parse_id_var(any_token=False)), 589 ) 590 591 class Generator(generator.Generator): 592 LIMIT_IS_TOP = True 593 QUERY_HINTS = False 594 RETURNING_END = False 595 NVL2_SUPPORTED = False 596 ALTER_TABLE_ADD_COLUMN_KEYWORD = False 597 LIMIT_FETCH = "FETCH" 598 COMPUTED_COLUMN_WITH_TYPE = False 599 600 TYPE_MAPPING = { 601 **generator.Generator.TYPE_MAPPING, 602 exp.DataType.Type.BOOLEAN: "BIT", 603 exp.DataType.Type.DECIMAL: "NUMERIC", 604 exp.DataType.Type.DATETIME: "DATETIME2", 605 exp.DataType.Type.DOUBLE: "FLOAT", 606 exp.DataType.Type.INT: "INTEGER", 607 exp.DataType.Type.TEXT: "VARCHAR(MAX)", 608 exp.DataType.Type.TIMESTAMP: "DATETIME2", 609 exp.DataType.Type.TIMESTAMPTZ: "DATETIMEOFFSET", 610 exp.DataType.Type.VARIANT: "SQL_VARIANT", 611 } 612 613 TRANSFORMS = { 614 **generator.Generator.TRANSFORMS, 615 exp.AnyValue: any_value_to_max_sql, 616 exp.AutoIncrementColumnConstraint: lambda *_: "IDENTITY", 617 exp.DateAdd: generate_date_delta_with_unit_sql, 618 exp.DateDiff: generate_date_delta_with_unit_sql, 619 exp.CurrentDate: rename_func("GETDATE"), 620 exp.CurrentTimestamp: rename_func("GETDATE"), 621 exp.Extract: rename_func("DATEPART"), 622 exp.GeneratedAsIdentityColumnConstraint: generatedasidentitycolumnconstraint_sql, 623 exp.GroupConcat: _string_agg_sql, 624 exp.If: rename_func("IIF"), 625 exp.Insert: move_insert_cte_sql, 626 exp.Max: max_or_greatest, 627 exp.MD5: lambda self, e: self.func("HASHBYTES", exp.Literal.string("MD5"), e.this), 628 exp.Min: min_or_least, 629 exp.NumberToStr: _format_sql, 630 exp.Select: transforms.preprocess( 631 [ 632 transforms.eliminate_distinct_on, 633 transforms.eliminate_semi_and_anti_joins, 634 transforms.eliminate_qualify, 635 ] 636 ), 637 exp.SHA: lambda self, e: self.func("HASHBYTES", exp.Literal.string("SHA1"), e.this), 638 exp.SHA2: lambda self, e: self.func( 639 "HASHBYTES", 640 exp.Literal.string(f"SHA2_{e.args.get('length', 256)}"), 641 e.this, 642 ), 643 exp.TemporaryProperty: lambda self, e: "", 644 exp.TimeStrToTime: timestrtotime_sql, 645 exp.TimeToStr: _format_sql, 646 exp.TsOrDsToDate: ts_or_ds_to_date_sql("tsql"), 647 } 648 649 TRANSFORMS.pop(exp.ReturnsProperty) 650 651 PROPERTIES_LOCATION = { 652 **generator.Generator.PROPERTIES_LOCATION, 653 exp.VolatileProperty: exp.Properties.Location.UNSUPPORTED, 654 } 655 656 def setitem_sql(self, expression: exp.SetItem) -> str: 657 this = expression.this 658 if isinstance(this, exp.EQ) and not isinstance(this.left, exp.Parameter): 659 # T-SQL does not use '=' in SET command, except when the LHS is a variable. 660 return f"{self.sql(this.left)} {self.sql(this.right)}" 661 662 return super().setitem_sql(expression) 663 664 def boolean_sql(self, expression: exp.Boolean) -> str: 665 if type(expression.parent) in BIT_TYPES: 666 return "1" if expression.this else "0" 667 668 return "(1 = 1)" if expression.this else "(1 = 0)" 669 670 def is_sql(self, expression: exp.Is) -> str: 671 if isinstance(expression.expression, exp.Boolean): 672 return self.binary(expression, "=") 673 return self.binary(expression, "IS") 674 675 def createable_sql(self, expression: exp.Create, locations: t.DefaultDict) -> str: 676 sql = self.sql(expression, "this") 677 properties = expression.args.get("properties") 678 679 if sql[:1] != "#" and any( 680 isinstance(prop, exp.TemporaryProperty) 681 for prop in (properties.expressions if properties else []) 682 ): 683 sql = f"#{sql}" 684 685 return sql 686 687 def create_sql(self, expression: exp.Create) -> str: 688 expression = expression.copy() 689 kind = self.sql(expression, "kind").upper() 690 exists = expression.args.pop("exists", None) 691 sql = super().create_sql(expression) 692 693 table = expression.find(exp.Table) 694 695 if kind == "TABLE" and expression.expression: 696 sql = f"SELECT * INTO {self.sql(table)} FROM ({self.sql(expression.expression)}) AS temp" 697 698 if exists: 699 identifier = self.sql(exp.Literal.string(exp.table_name(table) if table else "")) 700 sql = self.sql(exp.Literal.string(sql)) 701 if kind == "SCHEMA": 702 sql = f"""IF NOT EXISTS (SELECT * FROM information_schema.schemata WHERE schema_name = {identifier}) EXEC({sql})""" 703 elif kind == "TABLE": 704 assert table 705 where = exp.and_( 706 exp.column("table_name").eq(table.name), 707 exp.column("table_schema").eq(table.db) if table.db else None, 708 exp.column("table_catalog").eq(table.catalog) if table.catalog else None, 709 ) 710 sql = f"""IF NOT EXISTS (SELECT * FROM information_schema.tables WHERE {where}) EXEC({sql})""" 711 elif kind == "INDEX": 712 index = self.sql(exp.Literal.string(expression.this.text("this"))) 713 sql = f"""IF NOT EXISTS (SELECT * FROM sys.indexes WHERE object_id = object_id({identifier}) AND name = {index}) EXEC({sql})""" 714 elif expression.args.get("replace"): 715 sql = sql.replace("CREATE OR REPLACE ", "CREATE OR ALTER ", 1) 716 717 return sql 718 719 def offset_sql(self, expression: exp.Offset) -> str: 720 return f"{super().offset_sql(expression)} ROWS" 721 722 def version_sql(self, expression: exp.Version) -> str: 723 name = "SYSTEM_TIME" if expression.name == "TIMESTAMP" else expression.name 724 this = f"FOR {name}" 725 expr = expression.expression 726 kind = expression.text("kind") 727 if kind in ("FROM", "BETWEEN"): 728 args = expr.expressions 729 sep = "TO" if kind == "FROM" else "AND" 730 expr_sql = f"{self.sql(seq_get(args, 0))} {sep} {self.sql(seq_get(args, 1))}" 731 else: 732 expr_sql = self.sql(expr) 733 734 expr_sql = f" {expr_sql}" if expr_sql else "" 735 return f"{this} {kind}{expr_sql}" 736 737 def returnsproperty_sql(self, expression: exp.ReturnsProperty) -> str: 738 table = expression.args.get("table") 739 table = f"{table} " if table else "" 740 return f"RETURNS {table}{self.sql(expression, 'this')}" 741 742 def returning_sql(self, expression: exp.Returning) -> str: 743 into = self.sql(expression, "into") 744 into = self.seg(f"INTO {into}") if into else "" 745 return f"{self.seg('OUTPUT')} {self.expressions(expression, flat=True)}{into}" 746 747 def transaction_sql(self, expression: exp.Transaction) -> str: 748 this = self.sql(expression, "this") 749 this = f" {this}" if this else "" 750 mark = self.sql(expression, "mark") 751 mark = f" WITH MARK {mark}" if mark else "" 752 return f"BEGIN TRANSACTION{this}{mark}" 753 754 def commit_sql(self, expression: exp.Commit) -> str: 755 this = self.sql(expression, "this") 756 this = f" {this}" if this else "" 757 durability = expression.args.get("durability") 758 durability = ( 759 f" WITH (DELAYED_DURABILITY = {'ON' if durability else 'OFF'})" 760 if durability is not None 761 else "" 762 ) 763 return f"COMMIT TRANSACTION{this}{durability}" 764 765 def rollback_sql(self, expression: exp.Rollback) -> str: 766 this = self.sql(expression, "this") 767 this = f" {this}" if this else "" 768 return f"ROLLBACK TRANSACTION{this}" 769 770 def identifier_sql(self, expression: exp.Identifier) -> str: 771 identifier = super().identifier_sql(expression) 772 773 if expression.args.get("global"): 774 identifier = f"##{identifier}" 775 elif expression.args.get("temporary"): 776 identifier = f"#{identifier}" 777 778 return identifier 779 780 def constraint_sql(self, expression: exp.Constraint) -> str: 781 this = self.sql(expression, "this") 782 expressions = self.expressions(expression, flat=True, sep=" ") 783 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 =
{'C', 'N'}
DEFAULT_START_DATE =
datetime.date(1900, 1, 1)
BIT_TYPES =
{<class 'sqlglot.expressions.Alias'>, <class 'sqlglot.expressions.In'>, <class 'sqlglot.expressions.Is'>, <class 'sqlglot.expressions.NEQ'>, <class 'sqlglot.expressions.EQ'>, <class 'sqlglot.expressions.Select'>}
def
generate_date_delta_with_unit_sql( self: TSQL.Generator, expression: sqlglot.expressions.DateAdd | sqlglot.expressions.DateDiff) -> str:
209class TSQL(Dialect): 210 RESOLVES_IDENTIFIERS_AS_UPPERCASE = None 211 NULL_ORDERING = "nulls_are_small" 212 TIME_FORMAT = "'yyyy-mm-dd hh:mm:ss'" 213 SUPPORTS_SEMI_ANTI_JOIN = False 214 LOG_BASE_FIRST = False 215 216 TIME_MAPPING = { 217 "year": "%Y", 218 "qq": "%q", 219 "q": "%q", 220 "quarter": "%q", 221 "dayofyear": "%j", 222 "day": "%d", 223 "dy": "%d", 224 "y": "%Y", 225 "week": "%W", 226 "ww": "%W", 227 "wk": "%W", 228 "hour": "%h", 229 "hh": "%I", 230 "minute": "%M", 231 "mi": "%M", 232 "n": "%M", 233 "second": "%S", 234 "ss": "%S", 235 "s": "%-S", 236 "millisecond": "%f", 237 "ms": "%f", 238 "weekday": "%W", 239 "dw": "%W", 240 "month": "%m", 241 "mm": "%M", 242 "m": "%-M", 243 "Y": "%Y", 244 "YYYY": "%Y", 245 "YY": "%y", 246 "MMMM": "%B", 247 "MMM": "%b", 248 "MM": "%m", 249 "M": "%-m", 250 "dd": "%d", 251 "d": "%-d", 252 "HH": "%H", 253 "H": "%-H", 254 "h": "%-I", 255 "S": "%f", 256 "yyyy": "%Y", 257 "yy": "%y", 258 } 259 260 CONVERT_FORMAT_MAPPING = { 261 "0": "%b %d %Y %-I:%M%p", 262 "1": "%m/%d/%y", 263 "2": "%y.%m.%d", 264 "3": "%d/%m/%y", 265 "4": "%d.%m.%y", 266 "5": "%d-%m-%y", 267 "6": "%d %b %y", 268 "7": "%b %d, %y", 269 "8": "%H:%M:%S", 270 "9": "%b %d %Y %-I:%M:%S:%f%p", 271 "10": "mm-dd-yy", 272 "11": "yy/mm/dd", 273 "12": "yymmdd", 274 "13": "%d %b %Y %H:%M:ss:%f", 275 "14": "%H:%M:%S:%f", 276 "20": "%Y-%m-%d %H:%M:%S", 277 "21": "%Y-%m-%d %H:%M:%S.%f", 278 "22": "%m/%d/%y %-I:%M:%S %p", 279 "23": "%Y-%m-%d", 280 "24": "%H:%M:%S", 281 "25": "%Y-%m-%d %H:%M:%S.%f", 282 "100": "%b %d %Y %-I:%M%p", 283 "101": "%m/%d/%Y", 284 "102": "%Y.%m.%d", 285 "103": "%d/%m/%Y", 286 "104": "%d.%m.%Y", 287 "105": "%d-%m-%Y", 288 "106": "%d %b %Y", 289 "107": "%b %d, %Y", 290 "108": "%H:%M:%S", 291 "109": "%b %d %Y %-I:%M:%S:%f%p", 292 "110": "%m-%d-%Y", 293 "111": "%Y/%m/%d", 294 "112": "%Y%m%d", 295 "113": "%d %b %Y %H:%M:%S:%f", 296 "114": "%H:%M:%S:%f", 297 "120": "%Y-%m-%d %H:%M:%S", 298 "121": "%Y-%m-%d %H:%M:%S.%f", 299 } 300 301 FORMAT_TIME_MAPPING = { 302 "y": "%B %Y", 303 "d": "%m/%d/%Y", 304 "H": "%-H", 305 "h": "%-I", 306 "s": "%Y-%m-%d %H:%M:%S", 307 "D": "%A,%B,%Y", 308 "f": "%A,%B,%Y %-I:%M %p", 309 "F": "%A,%B,%Y %-I:%M:%S %p", 310 "g": "%m/%d/%Y %-I:%M %p", 311 "G": "%m/%d/%Y %-I:%M:%S %p", 312 "M": "%B %-d", 313 "m": "%B %-d", 314 "O": "%Y-%m-%dT%H:%M:%S", 315 "u": "%Y-%M-%D %H:%M:%S%z", 316 "U": "%A, %B %D, %Y %H:%M:%S%z", 317 "T": "%-I:%M:%S %p", 318 "t": "%-I:%M", 319 "Y": "%a %Y", 320 } 321 322 class Tokenizer(tokens.Tokenizer): 323 IDENTIFIERS = ['"', ("[", "]")] 324 QUOTES = ["'", '"'] 325 HEX_STRINGS = [("0x", ""), ("0X", "")] 326 327 KEYWORDS = { 328 **tokens.Tokenizer.KEYWORDS, 329 "DATETIME2": TokenType.DATETIME, 330 "DATETIMEOFFSET": TokenType.TIMESTAMPTZ, 331 "DECLARE": TokenType.COMMAND, 332 "IMAGE": TokenType.IMAGE, 333 "MONEY": TokenType.MONEY, 334 "NTEXT": TokenType.TEXT, 335 "NVARCHAR(MAX)": TokenType.TEXT, 336 "PRINT": TokenType.COMMAND, 337 "PROC": TokenType.PROCEDURE, 338 "REAL": TokenType.FLOAT, 339 "ROWVERSION": TokenType.ROWVERSION, 340 "SMALLDATETIME": TokenType.DATETIME, 341 "SMALLMONEY": TokenType.SMALLMONEY, 342 "SQL_VARIANT": TokenType.VARIANT, 343 "TOP": TokenType.TOP, 344 "UNIQUEIDENTIFIER": TokenType.UNIQUEIDENTIFIER, 345 "UPDATE STATISTICS": TokenType.COMMAND, 346 "VARCHAR(MAX)": TokenType.TEXT, 347 "XML": TokenType.XML, 348 "OUTPUT": TokenType.RETURNING, 349 "SYSTEM_USER": TokenType.CURRENT_USER, 350 "FOR SYSTEM_TIME": TokenType.TIMESTAMP_SNAPSHOT, 351 } 352 353 class Parser(parser.Parser): 354 SET_REQUIRES_ASSIGNMENT_DELIMITER = False 355 356 FUNCTIONS = { 357 **parser.Parser.FUNCTIONS, 358 "CHARINDEX": lambda args: exp.StrPosition( 359 this=seq_get(args, 1), 360 substr=seq_get(args, 0), 361 position=seq_get(args, 2), 362 ), 363 "DATEADD": parse_date_delta(exp.DateAdd, unit_mapping=DATE_DELTA_INTERVAL), 364 "DATEDIFF": _parse_date_delta(exp.DateDiff, unit_mapping=DATE_DELTA_INTERVAL), 365 "DATENAME": _format_time_lambda(exp.TimeToStr, full_format_mapping=True), 366 "DATEPART": _format_time_lambda(exp.TimeToStr), 367 "EOMONTH": _parse_eomonth, 368 "FORMAT": _parse_format, 369 "GETDATE": exp.CurrentTimestamp.from_arg_list, 370 "HASHBYTES": _parse_hashbytes, 371 "IIF": exp.If.from_arg_list, 372 "ISNULL": exp.Coalesce.from_arg_list, 373 "JSON_VALUE": exp.JSONExtractScalar.from_arg_list, 374 "LEN": exp.Length.from_arg_list, 375 "REPLICATE": exp.Repeat.from_arg_list, 376 "SQUARE": lambda args: exp.Pow(this=seq_get(args, 0), expression=exp.Literal.number(2)), 377 "SYSDATETIME": exp.CurrentTimestamp.from_arg_list, 378 "SUSER_NAME": exp.CurrentUser.from_arg_list, 379 "SUSER_SNAME": exp.CurrentUser.from_arg_list, 380 "SYSTEM_USER": exp.CurrentUser.from_arg_list, 381 } 382 383 JOIN_HINTS = { 384 "LOOP", 385 "HASH", 386 "MERGE", 387 "REMOTE", 388 } 389 390 VAR_LENGTH_DATATYPES = { 391 DataType.Type.NVARCHAR, 392 DataType.Type.VARCHAR, 393 DataType.Type.CHAR, 394 DataType.Type.NCHAR, 395 } 396 397 RETURNS_TABLE_TOKENS = parser.Parser.ID_VAR_TOKENS - { 398 TokenType.TABLE, 399 *parser.Parser.TYPE_TOKENS, 400 } 401 402 STATEMENT_PARSERS = { 403 **parser.Parser.STATEMENT_PARSERS, 404 TokenType.END: lambda self: self._parse_command(), 405 } 406 407 LOG_DEFAULTS_TO_LN = True 408 409 CONCAT_NULL_OUTPUTS_STRING = True 410 411 ALTER_TABLE_ADD_COLUMN_KEYWORD = False 412 413 def _parse_projections(self) -> t.List[exp.Expression]: 414 """ 415 T-SQL supports the syntax alias = expression in the SELECT's projection list, 416 so we transform all parsed Selects to convert their EQ projections into Aliases. 417 418 See: https://learn.microsoft.com/en-us/sql/t-sql/queries/select-clause-transact-sql?view=sql-server-ver16#syntax 419 """ 420 return [ 421 exp.alias_(projection.expression, projection.this.this, copy=False) 422 if isinstance(projection, exp.EQ) and isinstance(projection.this, exp.Column) 423 else projection 424 for projection in super()._parse_projections() 425 ] 426 427 def _parse_commit_or_rollback(self) -> exp.Commit | exp.Rollback: 428 """Applies to SQL Server and Azure SQL Database 429 COMMIT [ { TRAN | TRANSACTION } 430 [ transaction_name | @tran_name_variable ] ] 431 [ WITH ( DELAYED_DURABILITY = { OFF | ON } ) ] 432 433 ROLLBACK { TRAN | TRANSACTION } 434 [ transaction_name | @tran_name_variable 435 | savepoint_name | @savepoint_variable ] 436 """ 437 rollback = self._prev.token_type == TokenType.ROLLBACK 438 439 self._match_texts({"TRAN", "TRANSACTION"}) 440 this = self._parse_id_var() 441 442 if rollback: 443 return self.expression(exp.Rollback, this=this) 444 445 durability = None 446 if self._match_pair(TokenType.WITH, TokenType.L_PAREN): 447 self._match_text_seq("DELAYED_DURABILITY") 448 self._match(TokenType.EQ) 449 450 if self._match_text_seq("OFF"): 451 durability = False 452 else: 453 self._match(TokenType.ON) 454 durability = True 455 456 self._match_r_paren() 457 458 return self.expression(exp.Commit, this=this, durability=durability) 459 460 def _parse_transaction(self) -> exp.Transaction | exp.Command: 461 """Applies to SQL Server and Azure SQL Database 462 BEGIN { TRAN | TRANSACTION } 463 [ { transaction_name | @tran_name_variable } 464 [ WITH MARK [ 'description' ] ] 465 ] 466 """ 467 if self._match_texts(("TRAN", "TRANSACTION")): 468 transaction = self.expression(exp.Transaction, this=self._parse_id_var()) 469 if self._match_text_seq("WITH", "MARK"): 470 transaction.set("mark", self._parse_string()) 471 472 return transaction 473 474 return self._parse_as_command(self._prev) 475 476 def _parse_returns(self) -> exp.ReturnsProperty: 477 table = self._parse_id_var(any_token=False, tokens=self.RETURNS_TABLE_TOKENS) 478 returns = super()._parse_returns() 479 returns.set("table", table) 480 return returns 481 482 def _parse_convert( 483 self, strict: bool, safe: t.Optional[bool] = None 484 ) -> t.Optional[exp.Expression]: 485 to = self._parse_types() 486 self._match(TokenType.COMMA) 487 this = self._parse_conjunction() 488 489 if not to or not this: 490 return None 491 492 # Retrieve length of datatype and override to default if not specified 493 if seq_get(to.expressions, 0) is None and to.this in self.VAR_LENGTH_DATATYPES: 494 to = exp.DataType.build(to.this, expressions=[exp.Literal.number(30)], nested=False) 495 496 # Check whether a conversion with format is applicable 497 if self._match(TokenType.COMMA): 498 format_val = self._parse_number() 499 format_val_name = format_val.name if format_val else "" 500 501 if format_val_name not in TSQL.CONVERT_FORMAT_MAPPING: 502 raise ValueError( 503 f"CONVERT function at T-SQL does not support format style {format_val_name}" 504 ) 505 506 format_norm = exp.Literal.string(TSQL.CONVERT_FORMAT_MAPPING[format_val_name]) 507 508 # Check whether the convert entails a string to date format 509 if to.this == DataType.Type.DATE: 510 return self.expression(exp.StrToDate, this=this, format=format_norm) 511 # Check whether the convert entails a string to datetime format 512 elif to.this == DataType.Type.DATETIME: 513 return self.expression(exp.StrToTime, this=this, format=format_norm) 514 # Check whether the convert entails a date to string format 515 elif to.this in self.VAR_LENGTH_DATATYPES: 516 return self.expression( 517 exp.Cast if strict else exp.TryCast, 518 to=to, 519 this=self.expression(exp.TimeToStr, this=this, format=format_norm), 520 safe=safe, 521 ) 522 elif to.this == DataType.Type.TEXT: 523 return self.expression(exp.TimeToStr, this=this, format=format_norm) 524 525 # Entails a simple cast without any format requirement 526 return self.expression(exp.Cast if strict else exp.TryCast, this=this, to=to, safe=safe) 527 528 def _parse_user_defined_function( 529 self, kind: t.Optional[TokenType] = None 530 ) -> t.Optional[exp.Expression]: 531 this = super()._parse_user_defined_function(kind=kind) 532 533 if ( 534 kind == TokenType.FUNCTION 535 or isinstance(this, exp.UserDefinedFunction) 536 or self._match(TokenType.ALIAS, advance=False) 537 ): 538 return this 539 540 expressions = self._parse_csv(self._parse_function_parameter) 541 return self.expression(exp.UserDefinedFunction, this=this, expressions=expressions) 542 543 def _parse_id_var( 544 self, 545 any_token: bool = True, 546 tokens: t.Optional[t.Collection[TokenType]] = None, 547 ) -> t.Optional[exp.Expression]: 548 is_temporary = self._match(TokenType.HASH) 549 is_global = is_temporary and self._match(TokenType.HASH) 550 551 this = super()._parse_id_var(any_token=any_token, tokens=tokens) 552 if this: 553 if is_global: 554 this.set("global", True) 555 elif is_temporary: 556 this.set("temporary", True) 557 558 return this 559 560 def _parse_create(self) -> exp.Create | exp.Command: 561 create = super()._parse_create() 562 563 if isinstance(create, exp.Create): 564 table = create.this.this if isinstance(create.this, exp.Schema) else create.this 565 if isinstance(table, exp.Table) and table.this.args.get("temporary"): 566 if not create.args.get("properties"): 567 create.set("properties", exp.Properties(expressions=[])) 568 569 create.args["properties"].append("expressions", exp.TemporaryProperty()) 570 571 return create 572 573 def _parse_if(self) -> t.Optional[exp.Expression]: 574 index = self._index 575 576 if self._match_text_seq("OBJECT_ID"): 577 self._parse_wrapped_csv(self._parse_string) 578 if self._match_text_seq("IS", "NOT", "NULL") and self._match(TokenType.DROP): 579 return self._parse_drop(exists=True) 580 self._retreat(index) 581 582 return super()._parse_if() 583 584 def _parse_unique(self) -> exp.UniqueColumnConstraint: 585 return self.expression( 586 exp.UniqueColumnConstraint, 587 this=None 588 if self._curr and self._curr.text.upper() in {"CLUSTERED", "NONCLUSTERED"} 589 else self._parse_schema(self._parse_id_var(any_token=False)), 590 ) 591 592 class Generator(generator.Generator): 593 LIMIT_IS_TOP = True 594 QUERY_HINTS = False 595 RETURNING_END = False 596 NVL2_SUPPORTED = False 597 ALTER_TABLE_ADD_COLUMN_KEYWORD = False 598 LIMIT_FETCH = "FETCH" 599 COMPUTED_COLUMN_WITH_TYPE = False 600 601 TYPE_MAPPING = { 602 **generator.Generator.TYPE_MAPPING, 603 exp.DataType.Type.BOOLEAN: "BIT", 604 exp.DataType.Type.DECIMAL: "NUMERIC", 605 exp.DataType.Type.DATETIME: "DATETIME2", 606 exp.DataType.Type.DOUBLE: "FLOAT", 607 exp.DataType.Type.INT: "INTEGER", 608 exp.DataType.Type.TEXT: "VARCHAR(MAX)", 609 exp.DataType.Type.TIMESTAMP: "DATETIME2", 610 exp.DataType.Type.TIMESTAMPTZ: "DATETIMEOFFSET", 611 exp.DataType.Type.VARIANT: "SQL_VARIANT", 612 } 613 614 TRANSFORMS = { 615 **generator.Generator.TRANSFORMS, 616 exp.AnyValue: any_value_to_max_sql, 617 exp.AutoIncrementColumnConstraint: lambda *_: "IDENTITY", 618 exp.DateAdd: generate_date_delta_with_unit_sql, 619 exp.DateDiff: generate_date_delta_with_unit_sql, 620 exp.CurrentDate: rename_func("GETDATE"), 621 exp.CurrentTimestamp: rename_func("GETDATE"), 622 exp.Extract: rename_func("DATEPART"), 623 exp.GeneratedAsIdentityColumnConstraint: generatedasidentitycolumnconstraint_sql, 624 exp.GroupConcat: _string_agg_sql, 625 exp.If: rename_func("IIF"), 626 exp.Insert: move_insert_cte_sql, 627 exp.Max: max_or_greatest, 628 exp.MD5: lambda self, e: self.func("HASHBYTES", exp.Literal.string("MD5"), e.this), 629 exp.Min: min_or_least, 630 exp.NumberToStr: _format_sql, 631 exp.Select: transforms.preprocess( 632 [ 633 transforms.eliminate_distinct_on, 634 transforms.eliminate_semi_and_anti_joins, 635 transforms.eliminate_qualify, 636 ] 637 ), 638 exp.SHA: lambda self, e: self.func("HASHBYTES", exp.Literal.string("SHA1"), e.this), 639 exp.SHA2: lambda self, e: self.func( 640 "HASHBYTES", 641 exp.Literal.string(f"SHA2_{e.args.get('length', 256)}"), 642 e.this, 643 ), 644 exp.TemporaryProperty: lambda self, e: "", 645 exp.TimeStrToTime: timestrtotime_sql, 646 exp.TimeToStr: _format_sql, 647 exp.TsOrDsToDate: ts_or_ds_to_date_sql("tsql"), 648 } 649 650 TRANSFORMS.pop(exp.ReturnsProperty) 651 652 PROPERTIES_LOCATION = { 653 **generator.Generator.PROPERTIES_LOCATION, 654 exp.VolatileProperty: exp.Properties.Location.UNSUPPORTED, 655 } 656 657 def setitem_sql(self, expression: exp.SetItem) -> str: 658 this = expression.this 659 if isinstance(this, exp.EQ) and not isinstance(this.left, exp.Parameter): 660 # T-SQL does not use '=' in SET command, except when the LHS is a variable. 661 return f"{self.sql(this.left)} {self.sql(this.right)}" 662 663 return super().setitem_sql(expression) 664 665 def boolean_sql(self, expression: exp.Boolean) -> str: 666 if type(expression.parent) in BIT_TYPES: 667 return "1" if expression.this else "0" 668 669 return "(1 = 1)" if expression.this else "(1 = 0)" 670 671 def is_sql(self, expression: exp.Is) -> str: 672 if isinstance(expression.expression, exp.Boolean): 673 return self.binary(expression, "=") 674 return self.binary(expression, "IS") 675 676 def createable_sql(self, expression: exp.Create, locations: t.DefaultDict) -> str: 677 sql = self.sql(expression, "this") 678 properties = expression.args.get("properties") 679 680 if sql[:1] != "#" and any( 681 isinstance(prop, exp.TemporaryProperty) 682 for prop in (properties.expressions if properties else []) 683 ): 684 sql = f"#{sql}" 685 686 return sql 687 688 def create_sql(self, expression: exp.Create) -> str: 689 expression = expression.copy() 690 kind = self.sql(expression, "kind").upper() 691 exists = expression.args.pop("exists", None) 692 sql = super().create_sql(expression) 693 694 table = expression.find(exp.Table) 695 696 if kind == "TABLE" and expression.expression: 697 sql = f"SELECT * INTO {self.sql(table)} FROM ({self.sql(expression.expression)}) AS temp" 698 699 if exists: 700 identifier = self.sql(exp.Literal.string(exp.table_name(table) if table else "")) 701 sql = self.sql(exp.Literal.string(sql)) 702 if kind == "SCHEMA": 703 sql = f"""IF NOT EXISTS (SELECT * FROM information_schema.schemata WHERE schema_name = {identifier}) EXEC({sql})""" 704 elif kind == "TABLE": 705 assert table 706 where = exp.and_( 707 exp.column("table_name").eq(table.name), 708 exp.column("table_schema").eq(table.db) if table.db else None, 709 exp.column("table_catalog").eq(table.catalog) if table.catalog else None, 710 ) 711 sql = f"""IF NOT EXISTS (SELECT * FROM information_schema.tables WHERE {where}) EXEC({sql})""" 712 elif kind == "INDEX": 713 index = self.sql(exp.Literal.string(expression.this.text("this"))) 714 sql = f"""IF NOT EXISTS (SELECT * FROM sys.indexes WHERE object_id = object_id({identifier}) AND name = {index}) EXEC({sql})""" 715 elif expression.args.get("replace"): 716 sql = sql.replace("CREATE OR REPLACE ", "CREATE OR ALTER ", 1) 717 718 return sql 719 720 def offset_sql(self, expression: exp.Offset) -> str: 721 return f"{super().offset_sql(expression)} ROWS" 722 723 def version_sql(self, expression: exp.Version) -> str: 724 name = "SYSTEM_TIME" if expression.name == "TIMESTAMP" else expression.name 725 this = f"FOR {name}" 726 expr = expression.expression 727 kind = expression.text("kind") 728 if kind in ("FROM", "BETWEEN"): 729 args = expr.expressions 730 sep = "TO" if kind == "FROM" else "AND" 731 expr_sql = f"{self.sql(seq_get(args, 0))} {sep} {self.sql(seq_get(args, 1))}" 732 else: 733 expr_sql = self.sql(expr) 734 735 expr_sql = f" {expr_sql}" if expr_sql else "" 736 return f"{this} {kind}{expr_sql}" 737 738 def returnsproperty_sql(self, expression: exp.ReturnsProperty) -> str: 739 table = expression.args.get("table") 740 table = f"{table} " if table else "" 741 return f"RETURNS {table}{self.sql(expression, 'this')}" 742 743 def returning_sql(self, expression: exp.Returning) -> str: 744 into = self.sql(expression, "into") 745 into = self.seg(f"INTO {into}") if into else "" 746 return f"{self.seg('OUTPUT')} {self.expressions(expression, flat=True)}{into}" 747 748 def transaction_sql(self, expression: exp.Transaction) -> str: 749 this = self.sql(expression, "this") 750 this = f" {this}" if this else "" 751 mark = self.sql(expression, "mark") 752 mark = f" WITH MARK {mark}" if mark else "" 753 return f"BEGIN TRANSACTION{this}{mark}" 754 755 def commit_sql(self, expression: exp.Commit) -> str: 756 this = self.sql(expression, "this") 757 this = f" {this}" if this else "" 758 durability = expression.args.get("durability") 759 durability = ( 760 f" WITH (DELAYED_DURABILITY = {'ON' if durability else 'OFF'})" 761 if durability is not None 762 else "" 763 ) 764 return f"COMMIT TRANSACTION{this}{durability}" 765 766 def rollback_sql(self, expression: exp.Rollback) -> str: 767 this = self.sql(expression, "this") 768 this = f" {this}" if this else "" 769 return f"ROLLBACK TRANSACTION{this}" 770 771 def identifier_sql(self, expression: exp.Identifier) -> str: 772 identifier = super().identifier_sql(expression) 773 774 if expression.args.get("global"): 775 identifier = f"##{identifier}" 776 elif expression.args.get("temporary"): 777 identifier = f"#{identifier}" 778 779 return identifier 780 781 def constraint_sql(self, expression: exp.Constraint) -> str: 782 this = self.sql(expression, "this") 783 expressions = self.expressions(expression, flat=True, sep=" ") 784 return f"CONSTRAINT {this} {expressions}"
TIME_MAPPING: Dict[str, str] =
{'year': '%Y', 'qq': '%q', 'q': '%q', 'quarter': '%q', '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', 'dd': '%d', 'd': '%-d', 'HH': '%H', 'H': '%-H', 'h': '%-I', 'S': '%f', 'yyyy': '%Y', 'yy': '%y'}
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}}, 'q': {'q': {0: True}, 0: True, 'u': {'a': {'r': {'t': {'e': {'r': {0: True}}}}}}}, 'd': {'a': {'y': {'o': {'f': {'y': {'e': {'a': {'r': {0: True}}}}}}, 0: True}}, 'y': {0: True}, 'w': {0: True}, 'd': {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}}, 'q': {'q': {0: True}, 0: True, 'u': {'a': {'r': {'t': {'e': {'r': {0: True}}}}}}}, 'd': {'a': {'y': {'o': {'f': {'y': {'e': {'a': {'r': {0: True}}}}}}, 0: True}}, 'y': {0: True}, 'w': {0: True}, 'd': {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', '%q': 'quarter', '%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', '%-d': 'd', '%H': 'HH', '%-H': 'H', '%-I': 'h'}
INVERSE_TIME_TRIE: Dict =
{'%': {'Y': {0: True}, 'q': {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}, 'H': {0: True}}}
Inherited Members
- sqlglot.dialects.dialect.Dialect
- INDEX_OFFSET
- UNNEST_COLUMN_ONLY
- ALIAS_POST_TABLESAMPLE
- IDENTIFIERS_CAN_START_WITH_DIGIT
- DPIPE_IS_STRING_CONCAT
- STRICT_STRING_CONCAT
- SUPPORTS_USER_DEFINED_TYPES
- NORMALIZE_FUNCTIONS
- DATE_FORMAT
- DATEINT_FORMAT
- FORMAT_MAPPING
- ESCAPE_SEQUENCES
- PSEUDOCOLUMNS
- get_or_raise
- format_time
- normalize_identifier
- case_sensitive
- can_identify
- quote_identifier
- parse
- parse_into
- generate
- transpile
- tokenize
- tokenizer
- parser
- generator
322 class Tokenizer(tokens.Tokenizer): 323 IDENTIFIERS = ['"', ("[", "]")] 324 QUOTES = ["'", '"'] 325 HEX_STRINGS = [("0x", ""), ("0X", "")] 326 327 KEYWORDS = { 328 **tokens.Tokenizer.KEYWORDS, 329 "DATETIME2": TokenType.DATETIME, 330 "DATETIMEOFFSET": TokenType.TIMESTAMPTZ, 331 "DECLARE": TokenType.COMMAND, 332 "IMAGE": TokenType.IMAGE, 333 "MONEY": TokenType.MONEY, 334 "NTEXT": TokenType.TEXT, 335 "NVARCHAR(MAX)": TokenType.TEXT, 336 "PRINT": TokenType.COMMAND, 337 "PROC": TokenType.PROCEDURE, 338 "REAL": TokenType.FLOAT, 339 "ROWVERSION": TokenType.ROWVERSION, 340 "SMALLDATETIME": TokenType.DATETIME, 341 "SMALLMONEY": TokenType.SMALLMONEY, 342 "SQL_VARIANT": TokenType.VARIANT, 343 "TOP": TokenType.TOP, 344 "UNIQUEIDENTIFIER": TokenType.UNIQUEIDENTIFIER, 345 "UPDATE STATISTICS": TokenType.COMMAND, 346 "VARCHAR(MAX)": TokenType.TEXT, 347 "XML": TokenType.XML, 348 "OUTPUT": TokenType.RETURNING, 349 "SYSTEM_USER": TokenType.CURRENT_USER, 350 "FOR SYSTEM_TIME": TokenType.TIMESTAMP_SNAPSHOT, 351 }
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.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'>, 'TINYINT': <TokenType.TINYINT: 'TINYINT'>, 'SHORT': <TokenType.SMALLINT: 'SMALLINT'>, 'SMALLINT': <TokenType.SMALLINT: 'SMALLINT'>, 'INT128': <TokenType.INT128: 'INT128'>, 'INT2': <TokenType.SMALLINT: 'SMALLINT'>, 'INTEGER': <TokenType.INT: 'INT'>, 'INT': <TokenType.INT: 'INT'>, 'INT4': <TokenType.INT: 'INT'>, 'LONG': <TokenType.BIGINT: 'BIGINT'>, 'BIGINT': <TokenType.BIGINT: 'BIGINT'>, 'INT8': <TokenType.BIGINT: 'BIGINT'>, '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'>}
Inherited Members
- sqlglot.tokens.Tokenizer
- SINGLE_TOKENS
- BIT_STRINGS
- BYTE_STRINGS
- RAW_STRINGS
- HEREDOC_STRINGS
- IDENTIFIER_ESCAPES
- STRING_ESCAPES
- VAR_SINGLE_TOKENS
- ESCAPE_SEQUENCES
- IDENTIFIERS_CAN_START_WITH_DIGIT
- WHITE_SPACE
- COMMANDS
- COMMAND_PREFIX_TOKENS
- NUMERIC_LITERALS
- ENCODE
- COMMENTS
- reset
- tokenize
- peek
- size
- sql
- tokens
353 class Parser(parser.Parser): 354 SET_REQUIRES_ASSIGNMENT_DELIMITER = False 355 356 FUNCTIONS = { 357 **parser.Parser.FUNCTIONS, 358 "CHARINDEX": lambda args: exp.StrPosition( 359 this=seq_get(args, 1), 360 substr=seq_get(args, 0), 361 position=seq_get(args, 2), 362 ), 363 "DATEADD": parse_date_delta(exp.DateAdd, unit_mapping=DATE_DELTA_INTERVAL), 364 "DATEDIFF": _parse_date_delta(exp.DateDiff, unit_mapping=DATE_DELTA_INTERVAL), 365 "DATENAME": _format_time_lambda(exp.TimeToStr, full_format_mapping=True), 366 "DATEPART": _format_time_lambda(exp.TimeToStr), 367 "EOMONTH": _parse_eomonth, 368 "FORMAT": _parse_format, 369 "GETDATE": exp.CurrentTimestamp.from_arg_list, 370 "HASHBYTES": _parse_hashbytes, 371 "IIF": exp.If.from_arg_list, 372 "ISNULL": exp.Coalesce.from_arg_list, 373 "JSON_VALUE": exp.JSONExtractScalar.from_arg_list, 374 "LEN": exp.Length.from_arg_list, 375 "REPLICATE": exp.Repeat.from_arg_list, 376 "SQUARE": lambda args: exp.Pow(this=seq_get(args, 0), expression=exp.Literal.number(2)), 377 "SYSDATETIME": exp.CurrentTimestamp.from_arg_list, 378 "SUSER_NAME": exp.CurrentUser.from_arg_list, 379 "SUSER_SNAME": exp.CurrentUser.from_arg_list, 380 "SYSTEM_USER": exp.CurrentUser.from_arg_list, 381 } 382 383 JOIN_HINTS = { 384 "LOOP", 385 "HASH", 386 "MERGE", 387 "REMOTE", 388 } 389 390 VAR_LENGTH_DATATYPES = { 391 DataType.Type.NVARCHAR, 392 DataType.Type.VARCHAR, 393 DataType.Type.CHAR, 394 DataType.Type.NCHAR, 395 } 396 397 RETURNS_TABLE_TOKENS = parser.Parser.ID_VAR_TOKENS - { 398 TokenType.TABLE, 399 *parser.Parser.TYPE_TOKENS, 400 } 401 402 STATEMENT_PARSERS = { 403 **parser.Parser.STATEMENT_PARSERS, 404 TokenType.END: lambda self: self._parse_command(), 405 } 406 407 LOG_DEFAULTS_TO_LN = True 408 409 CONCAT_NULL_OUTPUTS_STRING = True 410 411 ALTER_TABLE_ADD_COLUMN_KEYWORD = False 412 413 def _parse_projections(self) -> t.List[exp.Expression]: 414 """ 415 T-SQL supports the syntax alias = expression in the SELECT's projection list, 416 so we transform all parsed Selects to convert their EQ projections into Aliases. 417 418 See: https://learn.microsoft.com/en-us/sql/t-sql/queries/select-clause-transact-sql?view=sql-server-ver16#syntax 419 """ 420 return [ 421 exp.alias_(projection.expression, projection.this.this, copy=False) 422 if isinstance(projection, exp.EQ) and isinstance(projection.this, exp.Column) 423 else projection 424 for projection in super()._parse_projections() 425 ] 426 427 def _parse_commit_or_rollback(self) -> exp.Commit | exp.Rollback: 428 """Applies to SQL Server and Azure SQL Database 429 COMMIT [ { TRAN | TRANSACTION } 430 [ transaction_name | @tran_name_variable ] ] 431 [ WITH ( DELAYED_DURABILITY = { OFF | ON } ) ] 432 433 ROLLBACK { TRAN | TRANSACTION } 434 [ transaction_name | @tran_name_variable 435 | savepoint_name | @savepoint_variable ] 436 """ 437 rollback = self._prev.token_type == TokenType.ROLLBACK 438 439 self._match_texts({"TRAN", "TRANSACTION"}) 440 this = self._parse_id_var() 441 442 if rollback: 443 return self.expression(exp.Rollback, this=this) 444 445 durability = None 446 if self._match_pair(TokenType.WITH, TokenType.L_PAREN): 447 self._match_text_seq("DELAYED_DURABILITY") 448 self._match(TokenType.EQ) 449 450 if self._match_text_seq("OFF"): 451 durability = False 452 else: 453 self._match(TokenType.ON) 454 durability = True 455 456 self._match_r_paren() 457 458 return self.expression(exp.Commit, this=this, durability=durability) 459 460 def _parse_transaction(self) -> exp.Transaction | exp.Command: 461 """Applies to SQL Server and Azure SQL Database 462 BEGIN { TRAN | TRANSACTION } 463 [ { transaction_name | @tran_name_variable } 464 [ WITH MARK [ 'description' ] ] 465 ] 466 """ 467 if self._match_texts(("TRAN", "TRANSACTION")): 468 transaction = self.expression(exp.Transaction, this=self._parse_id_var()) 469 if self._match_text_seq("WITH", "MARK"): 470 transaction.set("mark", self._parse_string()) 471 472 return transaction 473 474 return self._parse_as_command(self._prev) 475 476 def _parse_returns(self) -> exp.ReturnsProperty: 477 table = self._parse_id_var(any_token=False, tokens=self.RETURNS_TABLE_TOKENS) 478 returns = super()._parse_returns() 479 returns.set("table", table) 480 return returns 481 482 def _parse_convert( 483 self, strict: bool, safe: t.Optional[bool] = None 484 ) -> t.Optional[exp.Expression]: 485 to = self._parse_types() 486 self._match(TokenType.COMMA) 487 this = self._parse_conjunction() 488 489 if not to or not this: 490 return None 491 492 # Retrieve length of datatype and override to default if not specified 493 if seq_get(to.expressions, 0) is None and to.this in self.VAR_LENGTH_DATATYPES: 494 to = exp.DataType.build(to.this, expressions=[exp.Literal.number(30)], nested=False) 495 496 # Check whether a conversion with format is applicable 497 if self._match(TokenType.COMMA): 498 format_val = self._parse_number() 499 format_val_name = format_val.name if format_val else "" 500 501 if format_val_name not in TSQL.CONVERT_FORMAT_MAPPING: 502 raise ValueError( 503 f"CONVERT function at T-SQL does not support format style {format_val_name}" 504 ) 505 506 format_norm = exp.Literal.string(TSQL.CONVERT_FORMAT_MAPPING[format_val_name]) 507 508 # Check whether the convert entails a string to date format 509 if to.this == DataType.Type.DATE: 510 return self.expression(exp.StrToDate, this=this, format=format_norm) 511 # Check whether the convert entails a string to datetime format 512 elif to.this == DataType.Type.DATETIME: 513 return self.expression(exp.StrToTime, this=this, format=format_norm) 514 # Check whether the convert entails a date to string format 515 elif to.this in self.VAR_LENGTH_DATATYPES: 516 return self.expression( 517 exp.Cast if strict else exp.TryCast, 518 to=to, 519 this=self.expression(exp.TimeToStr, this=this, format=format_norm), 520 safe=safe, 521 ) 522 elif to.this == DataType.Type.TEXT: 523 return self.expression(exp.TimeToStr, this=this, format=format_norm) 524 525 # Entails a simple cast without any format requirement 526 return self.expression(exp.Cast if strict else exp.TryCast, this=this, to=to, safe=safe) 527 528 def _parse_user_defined_function( 529 self, kind: t.Optional[TokenType] = None 530 ) -> t.Optional[exp.Expression]: 531 this = super()._parse_user_defined_function(kind=kind) 532 533 if ( 534 kind == TokenType.FUNCTION 535 or isinstance(this, exp.UserDefinedFunction) 536 or self._match(TokenType.ALIAS, advance=False) 537 ): 538 return this 539 540 expressions = self._parse_csv(self._parse_function_parameter) 541 return self.expression(exp.UserDefinedFunction, this=this, expressions=expressions) 542 543 def _parse_id_var( 544 self, 545 any_token: bool = True, 546 tokens: t.Optional[t.Collection[TokenType]] = None, 547 ) -> t.Optional[exp.Expression]: 548 is_temporary = self._match(TokenType.HASH) 549 is_global = is_temporary and self._match(TokenType.HASH) 550 551 this = super()._parse_id_var(any_token=any_token, tokens=tokens) 552 if this: 553 if is_global: 554 this.set("global", True) 555 elif is_temporary: 556 this.set("temporary", True) 557 558 return this 559 560 def _parse_create(self) -> exp.Create | exp.Command: 561 create = super()._parse_create() 562 563 if isinstance(create, exp.Create): 564 table = create.this.this if isinstance(create.this, exp.Schema) else create.this 565 if isinstance(table, exp.Table) and table.this.args.get("temporary"): 566 if not create.args.get("properties"): 567 create.set("properties", exp.Properties(expressions=[])) 568 569 create.args["properties"].append("expressions", exp.TemporaryProperty()) 570 571 return create 572 573 def _parse_if(self) -> t.Optional[exp.Expression]: 574 index = self._index 575 576 if self._match_text_seq("OBJECT_ID"): 577 self._parse_wrapped_csv(self._parse_string) 578 if self._match_text_seq("IS", "NOT", "NULL") and self._match(TokenType.DROP): 579 return self._parse_drop(exists=True) 580 self._retreat(index) 581 582 return super()._parse_if() 583 584 def _parse_unique(self) -> exp.UniqueColumnConstraint: 585 return self.expression( 586 exp.UniqueColumnConstraint, 587 this=None 588 if self._curr and self._curr.text.upper() in {"CLUSTERED", "NONCLUSTERED"} 589 else self._parse_schema(self._parse_id_var(any_token=False)), 590 )
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
FUNCTIONS =
{'ABS': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Abs'>>, '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'>>, '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'>>, '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'>>, 'CONCAT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Concat'>>, 'CONCAT_WS': <bound method Func.from_arg_list of <class 'sqlglot.expressions.ConcatWs'>>, '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'>>, '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'>>, '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'>>, '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_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_DATE_OF_MONTH': <bound method Func.from_arg_list of <class 'sqlglot.expressions.LastDateOfMonth'>>, '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': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Log'>>, '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'>>, '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'>>, '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_CONCAT': <bound method Func.from_arg_list of <class 'sqlglot.expressions.SafeConcat'>>, 'SAFE_DIVIDE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.SafeDivide'>>, 'SET_AGG': <bound method Func.from_arg_list of <class 'sqlglot.expressions.SetAgg'>>, '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_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_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_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_TO_DATE': <bound method Func.from_arg_list of <class 'sqlglot.expressions.TsOrDsToDate'>>, 'TS_OR_DS_TO_DATE_STR': <function Parser.<lambda>>, 'UNHEX': <bound method Func.from_arg_list of <class 'sqlglot.expressions.Unhex'>>, '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>, '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'>>}
VAR_LENGTH_DATATYPES =
{<Type.NVARCHAR: 'NVARCHAR'>, <Type.NCHAR: 'NCHAR'>, <Type.CHAR: 'CHAR'>, <Type.VARCHAR: 'VARCHAR'>}
RETURNS_TABLE_TOKENS =
{<TokenType.PERCENT: 'PERCENT'>, <TokenType.PIVOT: 'PIVOT'>, <TokenType.TRUE: 'TRUE'>, <TokenType.EXECUTE: 'EXECUTE'>, <TokenType.DESC: 'DESC'>, <TokenType.CACHE: 'CACHE'>, <TokenType.FUNCTION: 'FUNCTION'>, <TokenType.CURRENT_USER: 'CURRENT_USER'>, <TokenType.SETTINGS: 'SETTINGS'>, <TokenType.CASE: 'CASE'>, <TokenType.ANTI: 'ANTI'>, <TokenType.EXISTS: 'EXISTS'>, <TokenType.INDEX: 'INDEX'>, <TokenType.CURRENT_DATETIME: 'CURRENT_DATETIME'>, <TokenType.ALL: 'ALL'>, <TokenType.VOLATILE: 'VOLATILE'>, <TokenType.SHOW: 'SHOW'>, <TokenType.OVERLAPS: 'OVERLAPS'>, <TokenType.COLLATE: 'COLLATE'>, <TokenType.COMMENT: 'COMMENT'>, <TokenType.FILTER: 'FILTER'>, <TokenType.ROWS: 'ROWS'>, <TokenType.RIGHT: 'RIGHT'>, <TokenType.UPDATE: 'UPDATE'>, <TokenType.DICTIONARY: 'DICTIONARY'>, <TokenType.WINDOW: 'WINDOW'>, <TokenType.DIV: 'DIV'>, <TokenType.UNPIVOT: 'UNPIVOT'>, <TokenType.PARTITION: 'PARTITION'>, <TokenType.ASC: 'ASC'>, <TokenType.PRAGMA: 'PRAGMA'>, <TokenType.PROCEDURE: 'PROCEDURE'>, <TokenType.SEMI: 'SEMI'>, <TokenType.SOME: 'SOME'>, <TokenType.ESCAPE: 'ESCAPE'>, <TokenType.ANY: 'ANY'>, <TokenType.DELETE: 'DELETE'>, <TokenType.LOAD: 'LOAD'>, <TokenType.NEXT: 'NEXT'>, <TokenType.TOP: 'TOP'>, <TokenType.DEFAULT: 'DEFAULT'>, <TokenType.AUTO_INCREMENT: 'AUTO_INCREMENT'>, <TokenType.OVERWRITE: 'OVERWRITE'>, <TokenType.IS: 'IS'>, <TokenType.VAR: 'VAR'>, <TokenType.COMMAND: 'COMMAND'>, <TokenType.CONSTRAINT: 'CONSTRAINT'>, <TokenType.REFERENCES: 'REFERENCES'>, <TokenType.CURRENT_TIMESTAMP: 'CURRENT_TIMESTAMP'>, <TokenType.VIEW: 'VIEW'>, <TokenType.LEFT: 'LEFT'>, <TokenType.COMMIT: 'COMMIT'>, <TokenType.MERGE: 'MERGE'>, <TokenType.DATABASE: 'DATABASE'>, <TokenType.CURRENT_DATE: 'CURRENT_DATE'>, <TokenType.TEMPORARY: 'TEMPORARY'>, <TokenType.SET: 'SET'>, <TokenType.DESCRIBE: 'DESCRIBE'>, <TokenType.FULL: 'FULL'>, <TokenType.FORMAT: 'FORMAT'>, <TokenType.CURRENT_TIME: 'CURRENT_TIME'>, <TokenType.END: 'END'>, <TokenType.ROW: 'ROW'>, <TokenType.ORDINALITY: 'ORDINALITY'>, <TokenType.NATURAL: 'NATURAL'>, <TokenType.COLUMN: 'COLUMN'>, <TokenType.SCHEMA: 'SCHEMA'>, <TokenType.FIRST: 'FIRST'>, <TokenType.OFFSET: 'OFFSET'>, <TokenType.UNIQUE: 'UNIQUE'>, <TokenType.FALSE: 'FALSE'>, <TokenType.KEEP: 'KEEP'>, <TokenType.RANGE: 'RANGE'>, <TokenType.ISNULL: 'ISNULL'>, <TokenType.APPLY: 'APPLY'>, <TokenType.MODEL: 'MODEL'>, <TokenType.BEGIN: 'BEGIN'>, <TokenType.KILL: 'KILL'>}
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.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>>}
TABLE_ALIAS_TOKENS =
{<TokenType.DATEMULTIRANGE: 'DATEMULTIRANGE'>, <TokenType.PERCENT: 'PERCENT'>, <TokenType.UMEDIUMINT: 'UMEDIUMINT'>, <TokenType.DOUBLE: 'DOUBLE'>, <TokenType.PIVOT: 'PIVOT'>, <TokenType.TRUE: 'TRUE'>, <TokenType.TEXT: 'TEXT'>, <TokenType.EXECUTE: 'EXECUTE'>, <TokenType.DESC: 'DESC'>, <TokenType.CACHE: 'CACHE'>, <TokenType.FUNCTION: 'FUNCTION'>, <TokenType.DATE: 'DATE'>, <TokenType.BIT: 'BIT'>, <TokenType.SETTINGS: 'SETTINGS'>, <TokenType.TINYTEXT: 'TINYTEXT'>, <TokenType.ROWVERSION: 'ROWVERSION'>, <TokenType.CURRENT_USER: 'CURRENT_USER'>, <TokenType.GEOGRAPHY: 'GEOGRAPHY'>, <TokenType.BIGDECIMAL: 'BIGDECIMAL'>, <TokenType.INT4MULTIRANGE: 'INT4MULTIRANGE'>, <TokenType.CASE: 'CASE'>, <TokenType.ANTI: 'ANTI'>, <TokenType.EXISTS: 'EXISTS'>, <TokenType.INDEX: 'INDEX'>, <TokenType.UUID: 'UUID'>, <TokenType.LOWCARDINALITY: 'LOWCARDINALITY'>, <TokenType.UNKNOWN: 'UNKNOWN'>, <TokenType.MEDIUMINT: 'MEDIUMINT'>, <TokenType.CURRENT_DATETIME: 'CURRENT_DATETIME'>, <TokenType.VOLATILE: 'VOLATILE'>, <TokenType.ALL: 'ALL'>, <TokenType.TINYBLOB: 'TINYBLOB'>, <TokenType.TSMULTIRANGE: 'TSMULTIRANGE'>, <TokenType.TIMETZ: 'TIMETZ'>, <TokenType.ENUM16: 'ENUM16'>, <TokenType.SHOW: 'SHOW'>, <TokenType.OVERLAPS: 'OVERLAPS'>, <TokenType.SMALLSERIAL: 'SMALLSERIAL'>, <TokenType.COLLATE: 'COLLATE'>, <TokenType.COMMENT: 'COMMENT'>, <TokenType.FILTER: 'FILTER'>, <TokenType.HLLSKETCH: 'HLLSKETCH'>, <TokenType.ROWS: 'ROWS'>, <TokenType.VARCHAR: 'VARCHAR'>, <TokenType.UPDATE: 'UPDATE'>, <TokenType.DICTIONARY: 'DICTIONARY'>, <TokenType.TABLE: 'TABLE'>, <TokenType.USERDEFINED: 'USERDEFINED'>, <TokenType.DIV: 'DIV'>, <TokenType.UNPIVOT: 'UNPIVOT'>, <TokenType.FIXEDSTRING: 'FIXEDSTRING'>, <TokenType.VARIANT: 'VARIANT'>, <TokenType.BIGINT: 'BIGINT'>, <TokenType.PARTITION: 'PARTITION'>, <TokenType.DATERANGE: 'DATERANGE'>, <TokenType.STRUCT: 'STRUCT'>, <TokenType.ASC: 'ASC'>, <TokenType.PRAGMA: 'PRAGMA'>, <TokenType.PROCEDURE: 'PROCEDURE'>, <TokenType.SEMI: 'SEMI'>, <TokenType.SOME: 'SOME'>, <TokenType.VARBINARY: 'VARBINARY'>, <TokenType.NUMRANGE: 'NUMRANGE'>, <TokenType.ESCAPE: 'ESCAPE'>, <TokenType.ANY: 'ANY'>, <TokenType.DELETE: 'DELETE'>, <TokenType.LONGTEXT: 'LONGTEXT'>, <TokenType.LOAD: 'LOAD'>, <TokenType.NEXT: 'NEXT'>, <TokenType.TOP: 'TOP'>, <TokenType.DEFAULT: 'DEFAULT'>, <TokenType.TIMESTAMP_MS: 'TIMESTAMP_MS'>, <TokenType.HSTORE: 'HSTORE'>, <TokenType.AUTO_INCREMENT: 'AUTO_INCREMENT'>, <TokenType.OVERWRITE: 'OVERWRITE'>, <TokenType.IS: 'IS'>, <TokenType.NULL: 'NULL'>, <TokenType.TIMESTAMP_NS: 'TIMESTAMP_NS'>, <TokenType.VAR: 'VAR'>, <TokenType.UNIQUEIDENTIFIER: 'UNIQUEIDENTIFIER'>, <TokenType.IPADDRESS: 'IPADDRESS'>, <TokenType.TIME: 'TIME'>, <TokenType.TIMESTAMPLTZ: 'TIMESTAMPLTZ'>, <TokenType.TINYINT: 'TINYINT'>, <TokenType.UINT128: 'UINT128'>, <TokenType.UINT256: 'UINT256'>, <TokenType.NCHAR: 'NCHAR'>, <TokenType.COMMAND: 'COMMAND'>, <TokenType.BOOLEAN: 'BOOLEAN'>, <TokenType.SUPER: 'SUPER'>, <TokenType.CONSTRAINT: 'CONSTRAINT'>, <TokenType.UDECIMAL: 'UDECIMAL'>, <TokenType.REFERENCES: 'REFERENCES'>, <TokenType.CURRENT_TIMESTAMP: 'CURRENT_TIMESTAMP'>, <TokenType.INT4RANGE: 'INT4RANGE'>, <TokenType.VIEW: 'VIEW'>, <TokenType.BIGSERIAL: 'BIGSERIAL'>, <TokenType.MONEY: 'MONEY'>, <TokenType.COMMIT: 'COMMIT'>, <TokenType.LONGBLOB: 'LONGBLOB'>, <TokenType.INT8MULTIRANGE: 'INT8MULTIRANGE'>, <TokenType.DATETIME64: 'DATETIME64'>, <TokenType.IMAGE: 'IMAGE'>, <TokenType.UTINYINT: 'UTINYINT'>, <TokenType.MERGE: 'MERGE'>, <TokenType.INT128: 'INT128'>, <TokenType.ENUM8: 'ENUM8'>, <TokenType.DATABASE: 'DATABASE'>, <TokenType.SMALLMONEY: 'SMALLMONEY'>, <TokenType.CURRENT_DATE: 'CURRENT_DATE'>, <TokenType.TSRANGE: 'TSRANGE'>, <TokenType.TEMPORARY: 'TEMPORARY'>, <TokenType.SET: 'SET'>, <TokenType.INT256: 'INT256'>, <TokenType.DESCRIBE: 'DESCRIBE'>, <TokenType.MAP: 'MAP'>, <TokenType.FORMAT: 'FORMAT'>, <TokenType.CURRENT_TIME: 'CURRENT_TIME'>, <TokenType.END: 'END'>, <TokenType.UINT: 'UINT'>, <TokenType.CHAR: 'CHAR'>, <TokenType.NULLABLE: 'NULLABLE'>, <TokenType.ROW: 'ROW'>, <TokenType.MEDIUMBLOB: 'MEDIUMBLOB'>, <TokenType.INT8RANGE: 'INT8RANGE'>, <TokenType.FLOAT: 'FLOAT'>, <TokenType.XML: 'XML'>, <TokenType.ORDINALITY: 'ORDINALITY'>, <TokenType.NESTED: 'NESTED'>, <TokenType.IPPREFIX: 'IPPREFIX'>, <TokenType.DECIMAL: 'DECIMAL'>, <TokenType.DATETIME: 'DATETIME'>, <TokenType.OBJECT_IDENTIFIER: 'OBJECT_IDENTIFIER'>, <TokenType.TIMESTAMP_S: 'TIMESTAMP_S'>, <TokenType.SERIAL: 'SERIAL'>, <TokenType.TIMESTAMPTZ: 'TIMESTAMPTZ'>, <TokenType.COLUMN: 'COLUMN'>, <TokenType.SCHEMA: 'SCHEMA'>, <TokenType.OBJECT: 'OBJECT'>, <TokenType.INET: 'INET'>, <TokenType.FIRST: 'FIRST'>, <TokenType.JSON: 'JSON'>, <TokenType.BINARY: 'BINARY'>, <TokenType.NVARCHAR: 'NVARCHAR'>, <TokenType.UNIQUE: 'UNIQUE'>, <TokenType.FALSE: 'FALSE'>, <TokenType.SMALLINT: 'SMALLINT'>, <TokenType.KEEP: 'KEEP'>, <TokenType.GEOMETRY: 'GEOMETRY'>, <TokenType.TIMESTAMP: 'TIMESTAMP'>, <TokenType.ARRAY: 'ARRAY'>, <TokenType.PSEUDO_TYPE: 'PSEUDO_TYPE'>, <TokenType.MEDIUMTEXT: 'MEDIUMTEXT'>, <TokenType.USMALLINT: 'USMALLINT'>, <TokenType.TSTZRANGE: 'TSTZRANGE'>, <TokenType.RANGE: 'RANGE'>, <TokenType.TSTZMULTIRANGE: 'TSTZMULTIRANGE'>, <TokenType.YEAR: 'YEAR'>, <TokenType.ISNULL: 'ISNULL'>, <TokenType.UBIGINT: 'UBIGINT'>, <TokenType.NUMMULTIRANGE: 'NUMMULTIRANGE'>, <TokenType.INT: 'INT'>, <TokenType.JSONB: 'JSONB'>, <TokenType.MODEL: 'MODEL'>, <TokenType.INTERVAL: 'INTERVAL'>, <TokenType.BEGIN: 'BEGIN'>, <TokenType.KILL: 'KILL'>, <TokenType.ENUM: 'ENUM'>}
SET_TRIE: Dict =
{'GLOBAL': {0: True}, 'LOCAL': {0: True}, 'SESSION': {0: True}, 'TRANSACTION': {0: True}}
FORMAT_TRIE: Dict =
{'y': {'e': {'a': {'r': {0: True}}}, 0: True, 'y': {'y': {'y': {0: True}}, 0: True}}, 'q': {'q': {0: True}, 0: True, 'u': {'a': {'r': {'t': {'e': {'r': {0: True}}}}}}}, 'd': {'a': {'y': {'o': {'f': {'y': {'e': {'a': {'r': {0: True}}}}}}, 0: True}}, 'y': {0: True}, 'w': {0: True}, 'd': {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}}
TIME_MAPPING: Dict[str, str] =
{'year': '%Y', 'qq': '%q', 'q': '%q', 'quarter': '%q', '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', 'dd': '%d', 'd': '%-d', 'HH': '%H', 'H': '%-H', 'h': '%-I', 'S': '%f', 'yyyy': '%Y', 'yy': '%y'}
TIME_TRIE: Dict =
{'y': {'e': {'a': {'r': {0: True}}}, 0: True, 'y': {'y': {'y': {0: True}}, 0: True}}, 'q': {'q': {0: True}, 0: True, 'u': {'a': {'r': {'t': {'e': {'r': {0: True}}}}}}}, 'd': {'a': {'y': {'o': {'f': {'y': {'e': {'a': {'r': {0: True}}}}}}, 0: True}}, 'y': {0: True}, 'w': {0: True}, 'd': {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}}
Inherited Members
- sqlglot.parser.Parser
- Parser
- NO_PAREN_FUNCTIONS
- STRUCT_TYPE_TOKENS
- NESTED_TYPE_TOKENS
- ENUM_TYPE_TOKENS
- TYPE_TOKENS
- SIGNED_TO_UNSIGNED_TYPE_TOKEN
- SUBQUERY_PREDICATES
- RESERVED_KEYWORDS
- DB_CREATABLES
- CREATABLES
- ID_VAR_TOKENS
- INTERVAL_VARS
- COMMENT_TABLE_ALIAS_TOKENS
- UPDATE_ALIAS_TOKENS
- TRIM_TYPES
- FUNC_TOKENS
- CONJUNCTION
- EQUALITY
- COMPARISON
- BITWISE
- TERM
- FACTOR
- TIMES
- TIMESTAMPS
- SET_OPERATIONS
- JOIN_METHODS
- JOIN_SIDES
- JOIN_KINDS
- LAMBDAS
- COLUMN_OPERATORS
- EXPRESSION_PARSERS
- UNARY_PARSERS
- PRIMARY_PARSERS
- PLACEHOLDER_PARSERS
- RANGE_PARSERS
- PROPERTY_PARSERS
- CONSTRAINT_PARSERS
- ALTER_PARSERS
- SCHEMA_UNNAMED_CONSTRAINTS
- NO_PAREN_FUNCTION_PARSERS
- INVALID_FUNC_NAME_TOKENS
- FUNCTIONS_WITH_ALIASED_ARGS
- FUNCTION_PARSERS
- QUERY_MODIFIER_PARSERS
- SET_PARSERS
- SHOW_PARSERS
- TYPE_LITERAL_PARSERS
- MODIFIABLES
- DDL_SELECT_TOKENS
- PRE_VOLATILE_TOKENS
- TRANSACTION_KIND
- TRANSACTION_CHARACTERISTICS
- INSERT_ALTERNATIVES
- CLONE_KEYWORDS
- CLONE_KINDS
- OPCLASS_FOLLOW_KEYWORDS
- TABLE_INDEX_HINT_TOKENS
- WINDOW_ALIAS_TOKENS
- WINDOW_BEFORE_PAREN_TOKENS
- WINDOW_SIDES
- FETCH_TOKENS
- ADD_CONSTRAINT_TOKENS
- DISTINCT_TOKENS
- NULL_TOKENS
- UNNEST_OFFSET_ALIAS_TOKENS
- STRICT_CAST
- PREFIXED_PIVOT_COLUMNS
- IDENTIFY_PIVOT_STRINGS
- TABLESAMPLE_CSV
- TRIM_PATTERN_FIRST
- INDEX_OFFSET
- UNNEST_COLUMN_ONLY
- ALIAS_POST_TABLESAMPLE
- STRICT_STRING_CONCAT
- SUPPORTS_USER_DEFINED_TYPES
- NORMALIZE_FUNCTIONS
- FORMAT_MAPPING
- error_level
- error_message_context
- max_errors
- reset
- parse
- parse_into
- check_errors
- raise_error
- expression
- validate_expression
- errors
- sql
592 class Generator(generator.Generator): 593 LIMIT_IS_TOP = True 594 QUERY_HINTS = False 595 RETURNING_END = False 596 NVL2_SUPPORTED = False 597 ALTER_TABLE_ADD_COLUMN_KEYWORD = False 598 LIMIT_FETCH = "FETCH" 599 COMPUTED_COLUMN_WITH_TYPE = False 600 601 TYPE_MAPPING = { 602 **generator.Generator.TYPE_MAPPING, 603 exp.DataType.Type.BOOLEAN: "BIT", 604 exp.DataType.Type.DECIMAL: "NUMERIC", 605 exp.DataType.Type.DATETIME: "DATETIME2", 606 exp.DataType.Type.DOUBLE: "FLOAT", 607 exp.DataType.Type.INT: "INTEGER", 608 exp.DataType.Type.TEXT: "VARCHAR(MAX)", 609 exp.DataType.Type.TIMESTAMP: "DATETIME2", 610 exp.DataType.Type.TIMESTAMPTZ: "DATETIMEOFFSET", 611 exp.DataType.Type.VARIANT: "SQL_VARIANT", 612 } 613 614 TRANSFORMS = { 615 **generator.Generator.TRANSFORMS, 616 exp.AnyValue: any_value_to_max_sql, 617 exp.AutoIncrementColumnConstraint: lambda *_: "IDENTITY", 618 exp.DateAdd: generate_date_delta_with_unit_sql, 619 exp.DateDiff: generate_date_delta_with_unit_sql, 620 exp.CurrentDate: rename_func("GETDATE"), 621 exp.CurrentTimestamp: rename_func("GETDATE"), 622 exp.Extract: rename_func("DATEPART"), 623 exp.GeneratedAsIdentityColumnConstraint: generatedasidentitycolumnconstraint_sql, 624 exp.GroupConcat: _string_agg_sql, 625 exp.If: rename_func("IIF"), 626 exp.Insert: move_insert_cte_sql, 627 exp.Max: max_or_greatest, 628 exp.MD5: lambda self, e: self.func("HASHBYTES", exp.Literal.string("MD5"), e.this), 629 exp.Min: min_or_least, 630 exp.NumberToStr: _format_sql, 631 exp.Select: transforms.preprocess( 632 [ 633 transforms.eliminate_distinct_on, 634 transforms.eliminate_semi_and_anti_joins, 635 transforms.eliminate_qualify, 636 ] 637 ), 638 exp.SHA: lambda self, e: self.func("HASHBYTES", exp.Literal.string("SHA1"), e.this), 639 exp.SHA2: lambda self, e: self.func( 640 "HASHBYTES", 641 exp.Literal.string(f"SHA2_{e.args.get('length', 256)}"), 642 e.this, 643 ), 644 exp.TemporaryProperty: lambda self, e: "", 645 exp.TimeStrToTime: timestrtotime_sql, 646 exp.TimeToStr: _format_sql, 647 exp.TsOrDsToDate: ts_or_ds_to_date_sql("tsql"), 648 } 649 650 TRANSFORMS.pop(exp.ReturnsProperty) 651 652 PROPERTIES_LOCATION = { 653 **generator.Generator.PROPERTIES_LOCATION, 654 exp.VolatileProperty: exp.Properties.Location.UNSUPPORTED, 655 } 656 657 def setitem_sql(self, expression: exp.SetItem) -> str: 658 this = expression.this 659 if isinstance(this, exp.EQ) and not isinstance(this.left, exp.Parameter): 660 # T-SQL does not use '=' in SET command, except when the LHS is a variable. 661 return f"{self.sql(this.left)} {self.sql(this.right)}" 662 663 return super().setitem_sql(expression) 664 665 def boolean_sql(self, expression: exp.Boolean) -> str: 666 if type(expression.parent) in BIT_TYPES: 667 return "1" if expression.this else "0" 668 669 return "(1 = 1)" if expression.this else "(1 = 0)" 670 671 def is_sql(self, expression: exp.Is) -> str: 672 if isinstance(expression.expression, exp.Boolean): 673 return self.binary(expression, "=") 674 return self.binary(expression, "IS") 675 676 def createable_sql(self, expression: exp.Create, locations: t.DefaultDict) -> str: 677 sql = self.sql(expression, "this") 678 properties = expression.args.get("properties") 679 680 if sql[:1] != "#" and any( 681 isinstance(prop, exp.TemporaryProperty) 682 for prop in (properties.expressions if properties else []) 683 ): 684 sql = f"#{sql}" 685 686 return sql 687 688 def create_sql(self, expression: exp.Create) -> str: 689 expression = expression.copy() 690 kind = self.sql(expression, "kind").upper() 691 exists = expression.args.pop("exists", None) 692 sql = super().create_sql(expression) 693 694 table = expression.find(exp.Table) 695 696 if kind == "TABLE" and expression.expression: 697 sql = f"SELECT * INTO {self.sql(table)} FROM ({self.sql(expression.expression)}) AS temp" 698 699 if exists: 700 identifier = self.sql(exp.Literal.string(exp.table_name(table) if table else "")) 701 sql = self.sql(exp.Literal.string(sql)) 702 if kind == "SCHEMA": 703 sql = f"""IF NOT EXISTS (SELECT * FROM information_schema.schemata WHERE schema_name = {identifier}) EXEC({sql})""" 704 elif kind == "TABLE": 705 assert table 706 where = exp.and_( 707 exp.column("table_name").eq(table.name), 708 exp.column("table_schema").eq(table.db) if table.db else None, 709 exp.column("table_catalog").eq(table.catalog) if table.catalog else None, 710 ) 711 sql = f"""IF NOT EXISTS (SELECT * FROM information_schema.tables WHERE {where}) EXEC({sql})""" 712 elif kind == "INDEX": 713 index = self.sql(exp.Literal.string(expression.this.text("this"))) 714 sql = f"""IF NOT EXISTS (SELECT * FROM sys.indexes WHERE object_id = object_id({identifier}) AND name = {index}) EXEC({sql})""" 715 elif expression.args.get("replace"): 716 sql = sql.replace("CREATE OR REPLACE ", "CREATE OR ALTER ", 1) 717 718 return sql 719 720 def offset_sql(self, expression: exp.Offset) -> str: 721 return f"{super().offset_sql(expression)} ROWS" 722 723 def version_sql(self, expression: exp.Version) -> str: 724 name = "SYSTEM_TIME" if expression.name == "TIMESTAMP" else expression.name 725 this = f"FOR {name}" 726 expr = expression.expression 727 kind = expression.text("kind") 728 if kind in ("FROM", "BETWEEN"): 729 args = expr.expressions 730 sep = "TO" if kind == "FROM" else "AND" 731 expr_sql = f"{self.sql(seq_get(args, 0))} {sep} {self.sql(seq_get(args, 1))}" 732 else: 733 expr_sql = self.sql(expr) 734 735 expr_sql = f" {expr_sql}" if expr_sql else "" 736 return f"{this} {kind}{expr_sql}" 737 738 def returnsproperty_sql(self, expression: exp.ReturnsProperty) -> str: 739 table = expression.args.get("table") 740 table = f"{table} " if table else "" 741 return f"RETURNS {table}{self.sql(expression, 'this')}" 742 743 def returning_sql(self, expression: exp.Returning) -> str: 744 into = self.sql(expression, "into") 745 into = self.seg(f"INTO {into}") if into else "" 746 return f"{self.seg('OUTPUT')} {self.expressions(expression, flat=True)}{into}" 747 748 def transaction_sql(self, expression: exp.Transaction) -> str: 749 this = self.sql(expression, "this") 750 this = f" {this}" if this else "" 751 mark = self.sql(expression, "mark") 752 mark = f" WITH MARK {mark}" if mark else "" 753 return f"BEGIN TRANSACTION{this}{mark}" 754 755 def commit_sql(self, expression: exp.Commit) -> str: 756 this = self.sql(expression, "this") 757 this = f" {this}" if this else "" 758 durability = expression.args.get("durability") 759 durability = ( 760 f" WITH (DELAYED_DURABILITY = {'ON' if durability else 'OFF'})" 761 if durability is not None 762 else "" 763 ) 764 return f"COMMIT TRANSACTION{this}{durability}" 765 766 def rollback_sql(self, expression: exp.Rollback) -> str: 767 this = self.sql(expression, "this") 768 this = f" {this}" if this else "" 769 return f"ROLLBACK TRANSACTION{this}" 770 771 def identifier_sql(self, expression: exp.Identifier) -> str: 772 identifier = super().identifier_sql(expression) 773 774 if expression.args.get("global"): 775 identifier = f"##{identifier}" 776 elif expression.args.get("temporary"): 777 identifier = f"#{identifier}" 778 779 return identifier 780 781 def constraint_sql(self, expression: exp.Constraint) -> str: 782 this = self.sql(expression, "this") 783 expressions = self.expressions(expression, flat=True, sep=" ") 784 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
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 generate_date_delta_with_unit_sql>, <class 'sqlglot.expressions.TsOrDsAdd'>: <function Generator.<lambda>>, <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.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 generate_date_delta_with_unit_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.GroupConcat'>: <function _string_agg_sql>, <class 'sqlglot.expressions.If'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.Insert'>: <function move_insert_cte_sql>, <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.Select'>: <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.TsOrDsToDate'>: <function ts_or_ds_to_date_sql.<locals>._ts_or_ds_to_date_sql>}
PROPERTIES_LOCATION =
{<class 'sqlglot.expressions.AlgorithmProperty'>: <Location.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.AutoIncrementProperty'>: <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.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'>}
657 def setitem_sql(self, expression: exp.SetItem) -> str: 658 this = expression.this 659 if isinstance(this, exp.EQ) and not isinstance(this.left, exp.Parameter): 660 # T-SQL does not use '=' in SET command, except when the LHS is a variable. 661 return f"{self.sql(this.left)} {self.sql(this.right)}" 662 663 return super().setitem_sql(expression)
676 def createable_sql(self, expression: exp.Create, locations: t.DefaultDict) -> str: 677 sql = self.sql(expression, "this") 678 properties = expression.args.get("properties") 679 680 if sql[:1] != "#" and any( 681 isinstance(prop, exp.TemporaryProperty) 682 for prop in (properties.expressions if properties else []) 683 ): 684 sql = f"#{sql}" 685 686 return sql
688 def create_sql(self, expression: exp.Create) -> str: 689 expression = expression.copy() 690 kind = self.sql(expression, "kind").upper() 691 exists = expression.args.pop("exists", None) 692 sql = super().create_sql(expression) 693 694 table = expression.find(exp.Table) 695 696 if kind == "TABLE" and expression.expression: 697 sql = f"SELECT * INTO {self.sql(table)} FROM ({self.sql(expression.expression)}) AS temp" 698 699 if exists: 700 identifier = self.sql(exp.Literal.string(exp.table_name(table) if table else "")) 701 sql = self.sql(exp.Literal.string(sql)) 702 if kind == "SCHEMA": 703 sql = f"""IF NOT EXISTS (SELECT * FROM information_schema.schemata WHERE schema_name = {identifier}) EXEC({sql})""" 704 elif kind == "TABLE": 705 assert table 706 where = exp.and_( 707 exp.column("table_name").eq(table.name), 708 exp.column("table_schema").eq(table.db) if table.db else None, 709 exp.column("table_catalog").eq(table.catalog) if table.catalog else None, 710 ) 711 sql = f"""IF NOT EXISTS (SELECT * FROM information_schema.tables WHERE {where}) EXEC({sql})""" 712 elif kind == "INDEX": 713 index = self.sql(exp.Literal.string(expression.this.text("this"))) 714 sql = f"""IF NOT EXISTS (SELECT * FROM sys.indexes WHERE object_id = object_id({identifier}) AND name = {index}) EXEC({sql})""" 715 elif expression.args.get("replace"): 716 sql = sql.replace("CREATE OR REPLACE ", "CREATE OR ALTER ", 1) 717 718 return sql
723 def version_sql(self, expression: exp.Version) -> str: 724 name = "SYSTEM_TIME" if expression.name == "TIMESTAMP" else expression.name 725 this = f"FOR {name}" 726 expr = expression.expression 727 kind = expression.text("kind") 728 if kind in ("FROM", "BETWEEN"): 729 args = expr.expressions 730 sep = "TO" if kind == "FROM" else "AND" 731 expr_sql = f"{self.sql(seq_get(args, 0))} {sep} {self.sql(seq_get(args, 1))}" 732 else: 733 expr_sql = self.sql(expr) 734 735 expr_sql = f" {expr_sql}" if expr_sql else "" 736 return f"{this} {kind}{expr_sql}"
755 def commit_sql(self, expression: exp.Commit) -> str: 756 this = self.sql(expression, "this") 757 this = f" {this}" if this else "" 758 durability = expression.args.get("durability") 759 durability = ( 760 f" WITH (DELAYED_DURABILITY = {'ON' if durability else 'OFF'})" 761 if durability is not None 762 else "" 763 ) 764 return f"COMMIT TRANSACTION{this}{durability}"
INVERSE_TIME_MAPPING: Dict[str, str] =
{'%Y': 'yyyy', '%q': 'quarter', '%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', '%-d': 'd', '%H': 'HH', '%-H': 'H', '%-I': 'h'}
INVERSE_TIME_TRIE: Dict =
{'%': {'Y': {0: True}, 'q': {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}, 'H': {0: True}}}
@classmethod
def
can_identify(text: str, identify: str | bool = 'safe') -> bool:
279 @classmethod 280 def can_identify(cls, text: str, identify: str | bool = "safe") -> bool: 281 """Checks if text can be identified given an identify option. 282 283 Args: 284 text: The text to check. 285 identify: 286 "always" or `True`: Always returns true. 287 "safe": True if the identifier is case-insensitive. 288 289 Returns: 290 Whether or not the given text can be identified. 291 """ 292 if identify is True or identify == "always": 293 return True 294 295 if identify == "safe": 296 return not cls.case_sensitive(text) 297 298 return False
Checks if text can be identified given an identify option.
Arguments:
- text: The text to check.
- identify: "always" or
True
: Always returns true. "safe": True if the identifier is case-insensitive.
Returns:
Whether or not the given text can be identified.
TOKENIZER_CLASS =
<class 'TSQL.Tokenizer'>
Inherited Members
- sqlglot.generator.Generator
- Generator
- NULL_ORDERING_SUPPORTED
- LOCKING_READS_SUPPORTED
- EXPLICIT_UNION
- WRAP_DERIVED_VALUES
- CREATE_FUNCTION_RETURN_AS
- MATCHED_BY_SOURCE
- SINGLE_STRING_INTERVAL
- INTERVAL_ALLOWS_PLURAL_FORM
- TABLESAMPLE_WITH_METHOD
- TABLESAMPLE_SIZE_IS_PERCENT
- 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_PARAMETERS
- SUPPORTS_TABLE_COPY
- TABLESAMPLE_REQUIRES_PARENS
- COLLATE_IS_FUNC
- DATA_TYPE_SPECIFIERS_ALLOWED
- STAR_MAPPING
- TIME_PART_SINGULARS
- TOKEN_MAPPING
- STRUCT_DELIMITER
- PARAMETER_TOKEN
- RESERVED_KEYWORDS
- WITH_SEPARATED_COMMENTS
- EXCLUDE_COMMENTS
- UNWRAPPED_INTERVAL_VALUES
- SENTINEL_LINE_BREAK
- INDEX_OFFSET
- UNNEST_COLUMN_ONLY
- ALIAS_POST_TABLESAMPLE
- IDENTIFIERS_CAN_START_WITH_DIGIT
- STRICT_STRING_CONCAT
- NORMALIZE_FUNCTIONS
- pretty
- identify
- normalize
- pad
- unsupported_level
- max_unsupported
- leading_comma
- max_text_width
- comments
- normalize_functions
- unsupported_messages
- generate
- 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
- notnullcolumnconstraint_sql
- primarykeycolumnconstraint_sql
- uniquecolumnconstraint_sql
- clone_sql
- describe_sql
- prepend_ctes
- with_sql
- cte_sql
- tablealias_sql
- bitstring_sql
- hexstring_sql
- bytestring_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
- lockingproperty_sql
- withdataproperty_sql
- insert_sql
- intersect_sql
- intersect_op
- introducer_sql
- kill_sql
- pseudotype_sql
- objectidentifier_sql
- onconflict_sql
- rowformatdelimitedproperty_sql
- withtablehint_sql
- indextablehint_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
- 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
- safebracket_sql
- all_sql
- any_sql
- exists_sql
- case_sql
- nextvaluefor_sql
- extract_sql
- trim_sql
- safeconcat_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
- 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
- droppartition_sql
- addconstraint_sql
- distinct_sql
- ignorenulls_sql
- respectnulls_sql
- intdiv_sql
- dpipe_sql
- safedpipe_sql
- div_sql
- overlaps_sql
- distance_sql
- dot_sql
- eq_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
- set_operation
- 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