Edit on GitHub

sqlglot.generators.clickhouse

  1from __future__ import annotations
  2
  3import datetime
  4import typing as t
  5
  6from sqlglot import exp, generator
  7from sqlglot.dialects.dialect import (
  8    arg_max_or_min_no_count,
  9    inline_array_sql,
 10    jarowinkler_similarity,
 11    json_extract_segments,
 12    json_path_key_only_name,
 13    length_or_char_length_sql,
 14    no_pivot_sql,
 15    rename_func,
 16    remove_from_array_using_filter,
 17    sha256_sql,
 18    strposition_sql,
 19    var_map_sql,
 20    unit_to_str,
 21    unit_to_var,
 22    trim_sql,
 23    sha2_digest_sql,
 24)
 25from sqlglot.generator import unsupported_args
 26from sqlglot.helper import is_int
 27from collections import defaultdict
 28
 29DATETIME_DELTA = t.Union[exp.DateAdd, exp.DateDiff, exp.DateSub, exp.TimestampSub, exp.TimestampAdd]
 30
 31
 32def _unix_to_time_sql(self: ClickHouseGenerator, expression: exp.UnixToTime) -> str:
 33    scale = expression.args.get("scale")
 34    timestamp = expression.this
 35
 36    if scale in (None, exp.UnixToTime.SECONDS):
 37        return self.func("fromUnixTimestamp", exp.cast(timestamp, exp.DType.BIGINT))
 38    if scale == exp.UnixToTime.MILLIS:
 39        return self.func("fromUnixTimestamp64Milli", exp.cast(timestamp, exp.DType.BIGINT))
 40    if scale == exp.UnixToTime.MICROS:
 41        return self.func("fromUnixTimestamp64Micro", exp.cast(timestamp, exp.DType.BIGINT))
 42    if scale == exp.UnixToTime.NANOS:
 43        return self.func("fromUnixTimestamp64Nano", exp.cast(timestamp, exp.DType.BIGINT))
 44
 45    return self.func(
 46        "fromUnixTimestamp",
 47        exp.cast(exp.Div(this=timestamp, expression=exp.func("POW", 10, scale)), exp.DType.BIGINT),
 48    )
 49
 50
 51def _lower_func(sql: str) -> str:
 52    index = sql.index("(")
 53    return sql[:index].lower() + sql[index:]
 54
 55
 56def _quantile_sql(self: ClickHouseGenerator, expression: exp.Quantile) -> str:
 57    quantile = expression.args["quantile"]
 58    args = f"({self.sql(expression, 'this')})"
 59
 60    if isinstance(quantile, exp.Array):
 61        func = self.func("quantiles", *quantile)
 62    else:
 63        func = self.func("quantile", quantile)
 64
 65    return func + args
 66
 67
 68def _datetime_delta_sql(name: str) -> t.Callable[[generator.Generator, DATETIME_DELTA], str]:
 69    def _delta_sql(self: generator.Generator, expression: DATETIME_DELTA) -> str:
 70        if not expression.unit:
 71            return rename_func(name)(self, expression)
 72
 73        return self.func(
 74            name,
 75            unit_to_var(expression),
 76            expression.expression,
 77            expression.this,
 78            expression.args.get("zone"),
 79        )
 80
 81    return _delta_sql
 82
 83
 84def _timestrtotime_sql(self: ClickHouseGenerator, expression: exp.TimeStrToTime):
 85    ts = expression.this
 86
 87    tz = expression.args.get("zone")
 88    if tz and isinstance(ts, exp.Literal):
 89        # Clickhouse will not accept timestamps that include a UTC offset, so we must remove them.
 90        # The first step to removing is parsing the string with `datetime.datetime.fromisoformat`.
 91        #
 92        # In python <3.11, `fromisoformat()` can only parse timestamps of millisecond (3 digit)
 93        # or microsecond (6 digit) precision. It will error if passed any other number of fractional
 94        # digits, so we extract the fractional seconds and pad to 6 digits before parsing.
 95        ts_string = ts.name.strip()
 96
 97        # separate [date and time] from [fractional seconds and UTC offset]
 98        ts_parts = ts_string.split(".")
 99        if len(ts_parts) == 2:
100            # separate fractional seconds and UTC offset
101            offset_sep = "+" if "+" in ts_parts[1] else "-"
102            ts_frac_parts = ts_parts[1].split(offset_sep)
103            num_frac_parts = len(ts_frac_parts)
104
105            # pad to 6 digits if fractional seconds present
106            ts_frac_parts[0] = ts_frac_parts[0].ljust(6, "0")
107            ts_string = "".join(
108                [
109                    ts_parts[0],  # date and time
110                    ".",
111                    ts_frac_parts[0],  # fractional seconds
112                    offset_sep if num_frac_parts > 1 else "",
113                    ts_frac_parts[1] if num_frac_parts > 1 else "",  # utc offset (if present)
114                ]
115            )
116
117        # return literal with no timezone, eg turn '2020-01-01 12:13:14-08:00' into '2020-01-01 12:13:14'
118        # this is because Clickhouse encodes the timezone as a data type parameter and throws an error if
119        # it's part of the timestamp string
120        ts_without_tz = (
121            datetime.datetime.fromisoformat(ts_string).replace(tzinfo=None).isoformat(sep=" ")
122        )
123        ts = exp.Literal.string(ts_without_tz)
124
125    # Non-nullable DateTime64 with microsecond precision
126    expressions = [exp.DataTypeParam(this=tz)] if tz else []
127    datatype = exp.DType.DATETIME64.into_expr(
128        expressions=[exp.DataTypeParam(this=exp.Literal.number(6)), *expressions],
129        nullable=False,
130    )
131
132    return self.sql(exp.cast(ts, datatype, dialect=self.dialect))
133
134
135def _map_sql(self: ClickHouseGenerator, expression: exp.Map | exp.VarMap) -> str:
136    if not (expression.parent and expression.parent.arg_key == "settings"):
137        return _lower_func(var_map_sql(self, expression))
138
139    keys = expression.args.get("keys")
140    values = expression.args.get("values")
141
142    if not isinstance(keys, exp.Array) or not isinstance(values, exp.Array):
143        self.unsupported("Cannot convert array columns into map.")
144        return ""
145
146    args = []
147    for key, value in zip(keys.expressions, values.expressions):
148        args.append(f"{self.sql(key)}: {self.sql(value)}")
149
150    csv_args = ", ".join(args)
151
152    return f"{{{csv_args}}}"
153
154
155def _json_cast_sql(self: ClickHouseGenerator, expression: exp.JSONCast) -> str:
156    this = self.sql(expression, "this")
157    to = expression.to
158    to_sql = self.sql(to)
159
160    if to.expressions:
161        to_sql = self.sql(exp.to_identifier(to_sql))
162
163    return f"{this}.:{to_sql}"
164
165
166class ClickHouseGenerator(generator.Generator):
167    SELECT_KINDS: tuple[str, ...] = ()
168    TRY_SUPPORTED = False
169    SUPPORTS_UESCAPE = False
170    SUPPORTS_DECODE_CASE = False
171
172    AFTER_HAVING_MODIFIER_TRANSFORMS = generator.AFTER_HAVING_MODIFIER_TRANSFORMS
173
174    QUERY_HINTS = False
175    STRUCT_DELIMITER = ("(", ")")
176    NVL2_SUPPORTED = False
177    TABLESAMPLE_REQUIRES_PARENS = False
178    TABLESAMPLE_SIZE_IS_ROWS = False
179    TABLESAMPLE_KEYWORDS = "SAMPLE"
180    LAST_DAY_SUPPORTS_DATE_PART = False
181    CAN_IMPLEMENT_ARRAY_ANY = True
182    SUPPORTS_TO_NUMBER = False
183    JOIN_HINTS = False
184    TABLE_HINTS = False
185    GROUPINGS_SEP = ""
186    SET_OP_MODIFIERS = False
187    ARRAY_SIZE_NAME = "LENGTH"
188    WRAP_DERIVED_VALUES = False
189
190    STRING_TYPE_MAPPING: t.ClassVar = {
191        exp.DType.BLOB: "String",
192        exp.DType.CHAR: "String",
193        exp.DType.LONGBLOB: "String",
194        exp.DType.LONGTEXT: "String",
195        exp.DType.MEDIUMBLOB: "String",
196        exp.DType.MEDIUMTEXT: "String",
197        exp.DType.TINYBLOB: "String",
198        exp.DType.TINYTEXT: "String",
199        exp.DType.TEXT: "String",
200        exp.DType.VARBINARY: "String",
201        exp.DType.VARCHAR: "String",
202    }
203
204    SUPPORTED_JSON_PATH_PARTS = {
205        exp.JSONPathKey,
206        exp.JSONPathRoot,
207        exp.JSONPathSubscript,
208    }
209
210    TYPE_MAPPING = {
211        **generator.Generator.TYPE_MAPPING,
212        exp.DType.BLOB: "String",
213        exp.DType.CHAR: "String",
214        exp.DType.LONGBLOB: "String",
215        exp.DType.LONGTEXT: "String",
216        exp.DType.MEDIUMBLOB: "String",
217        exp.DType.MEDIUMTEXT: "String",
218        exp.DType.TINYBLOB: "String",
219        exp.DType.TINYTEXT: "String",
220        exp.DType.TEXT: "String",
221        exp.DType.VARBINARY: "String",
222        exp.DType.VARCHAR: "String",
223        exp.DType.ARRAY: "Array",
224        exp.DType.BOOLEAN: "Bool",
225        exp.DType.BIGINT: "Int64",
226        exp.DType.DATE32: "Date32",
227        exp.DType.DATETIME: "DateTime",
228        exp.DType.DATETIME2: "DateTime",
229        exp.DType.SMALLDATETIME: "DateTime",
230        exp.DType.DATETIME64: "DateTime64",
231        exp.DType.DECIMAL: "Decimal",
232        exp.DType.DECIMAL32: "Decimal32",
233        exp.DType.DECIMAL64: "Decimal64",
234        exp.DType.DECIMAL128: "Decimal128",
235        exp.DType.DECIMAL256: "Decimal256",
236        exp.DType.TIMESTAMP: "DateTime",
237        exp.DType.TIMESTAMPNTZ: "DateTime",
238        exp.DType.TIMESTAMPTZ: "DateTime",
239        exp.DType.DOUBLE: "Float64",
240        exp.DType.ENUM: "Enum",
241        exp.DType.ENUM8: "Enum8",
242        exp.DType.ENUM16: "Enum16",
243        exp.DType.FIXEDSTRING: "FixedString",
244        exp.DType.FLOAT: "Float32",
245        exp.DType.INT: "Int32",
246        exp.DType.MEDIUMINT: "Int32",
247        exp.DType.INT128: "Int128",
248        exp.DType.INT256: "Int256",
249        exp.DType.LOWCARDINALITY: "LowCardinality",
250        exp.DType.MAP: "Map",
251        exp.DType.NESTED: "Nested",
252        exp.DType.NOTHING: "Nothing",
253        exp.DType.SMALLINT: "Int16",
254        exp.DType.STRUCT: "Tuple",
255        exp.DType.TINYINT: "Int8",
256        exp.DType.UBIGINT: "UInt64",
257        exp.DType.UINT: "UInt32",
258        exp.DType.UINT128: "UInt128",
259        exp.DType.UINT256: "UInt256",
260        exp.DType.USMALLINT: "UInt16",
261        exp.DType.UTINYINT: "UInt8",
262        exp.DType.IPV4: "IPv4",
263        exp.DType.IPV6: "IPv6",
264        exp.DType.POINT: "Point",
265        exp.DType.RING: "Ring",
266        exp.DType.LINESTRING: "LineString",
267        exp.DType.MULTILINESTRING: "MultiLineString",
268        exp.DType.POLYGON: "Polygon",
269        exp.DType.MULTIPOLYGON: "MultiPolygon",
270        exp.DType.AGGREGATEFUNCTION: "AggregateFunction",
271        exp.DType.SIMPLEAGGREGATEFUNCTION: "SimpleAggregateFunction",
272        exp.DType.DYNAMIC: "Dynamic",
273    }
274
275    TRANSFORMS = {
276        **generator.Generator.TRANSFORMS,
277        exp.AnyValue: rename_func("any"),
278        exp.ApproxDistinct: rename_func("uniq"),
279        exp.ArrayDistinct: rename_func("arrayDistinct"),
280        exp.ArrayConcat: rename_func("arrayConcat"),
281        exp.ArrayContains: rename_func("has"),
282        exp.ArrayFilter: lambda self, e: self.func("arrayFilter", e.expression, e.this),
283        exp.Transform: lambda self, e: self.func("arrayMap", e.expression, e.this),
284        exp.ArrayRemove: remove_from_array_using_filter,
285        exp.ArrayReverse: rename_func("arrayReverse"),
286        exp.ArraySlice: rename_func("arraySlice"),
287        exp.ArraySum: rename_func("arraySum"),
288        exp.ArrayMax: rename_func("arrayMax"),
289        exp.ArrayMin: rename_func("arrayMin"),
290        exp.ArgMax: arg_max_or_min_no_count("argMax"),
291        exp.ArgMin: arg_max_or_min_no_count("argMin"),
292        exp.Array: inline_array_sql,
293        exp.CityHash64: rename_func("cityHash64"),
294        exp.CastToStrType: rename_func("CAST"),
295        exp.CurrentDatabase: rename_func("CURRENT_DATABASE"),
296        exp.CurrentSchemas: rename_func("CURRENT_SCHEMAS"),
297        exp.CountIf: rename_func("countIf"),
298        exp.CosineDistance: rename_func("cosineDistance"),
299        exp.CompressColumnConstraint: lambda self, e: (
300            f"CODEC({self.expressions(e, key='this', flat=True)})"
301        ),
302        exp.ComputedColumnConstraint: lambda self, e: (
303            f"{'MATERIALIZED' if e.args.get('persisted') else 'ALIAS'} {self.sql(e, 'this')}"
304        ),
305        exp.CurrentDate: lambda self, e: self.func("CURRENT_DATE"),
306        exp.CurrentVersion: rename_func("VERSION"),
307        exp.DateAdd: _datetime_delta_sql("DATE_ADD"),
308        exp.DateDiff: _datetime_delta_sql("DATE_DIFF"),
309        exp.DateStrToDate: rename_func("toDate"),
310        exp.DateSub: _datetime_delta_sql("DATE_SUB"),
311        exp.Explode: rename_func("arrayJoin"),
312        exp.FarmFingerprint: rename_func("farmFingerprint64"),
313        exp.Final: lambda self, e: f"{self.sql(e, 'this')} FINAL",
314        exp.IsNan: rename_func("isNaN"),
315        exp.JarowinklerSimilarity: jarowinkler_similarity("jaroWinklerSimilarity"),
316        exp.JSONCast: _json_cast_sql,
317        exp.JSONExtract: json_extract_segments("JSONExtractString", quoted_index=False),
318        exp.JSONExtractScalar: json_extract_segments("JSONExtractString", quoted_index=False),
319        exp.JSONPathKey: json_path_key_only_name,
320        exp.JSONPathRoot: lambda *_: "",
321        exp.Length: length_or_char_length_sql,
322        exp.Map: _map_sql,
323        exp.Median: rename_func("median"),
324        exp.Nullif: rename_func("nullIf"),
325        exp.PartitionedByProperty: lambda self, e: f"PARTITION BY {self.sql(e, 'this')}",
326        exp.Pivot: no_pivot_sql,
327        exp.Quantile: _quantile_sql,
328        exp.RegexpLike: lambda self, e: self.func("match", e.this, e.expression),
329        exp.Rand: rename_func("randCanonical"),
330        exp.StartsWith: rename_func("startsWith"),
331        exp.Struct: rename_func("tuple"),
332        exp.Trunc: rename_func("trunc"),
333        exp.EndsWith: rename_func("endsWith"),
334        exp.EuclideanDistance: rename_func("L2Distance"),
335        exp.StrPosition: lambda self, e: strposition_sql(
336            self,
337            e,
338            func_name="POSITION",
339            supports_position=True,
340            use_ansi_position=False,
341        ),
342        exp.TimeToStr: lambda self, e: self.func(
343            "formatDateTime",
344            e.this.this if isinstance(e.this, exp.TsOrDsToTimestamp) else e.this,
345            self.format_time(e),
346            e.args.get("zone"),
347        ),
348        exp.TimeStrToTime: _timestrtotime_sql,
349        exp.TimestampAdd: _datetime_delta_sql("TIMESTAMP_ADD"),
350        exp.TimestampSub: _datetime_delta_sql("TIMESTAMP_SUB"),
351        exp.Typeof: rename_func("toTypeName"),
352        exp.VarMap: _map_sql,
353        exp.Xor: lambda self, e: self.func("xor", e.this, e.expression),
354        exp.MD5Digest: rename_func("MD5"),
355        exp.MD5: lambda self, e: self.func("LOWER", self.func("HEX", self.func("MD5", e.this))),
356        exp.SHA: rename_func("SHA1"),
357        exp.SHA1Digest: rename_func("SHA1"),
358        exp.SHA2: sha256_sql,
359        exp.SHA2Digest: sha2_digest_sql,
360        exp.Split: lambda self, e: self.func(
361            "splitByString", e.args.get("expression"), e.this, e.args.get("limit")
362        ),
363        exp.RegexpSplit: lambda self, e: self.func(
364            "splitByRegexp", e.args.get("expression"), e.this, e.args.get("limit")
365        ),
366        exp.UnixToTime: _unix_to_time_sql,
367        exp.Trim: lambda self, e: trim_sql(self, e, default_trim_type="BOTH"),
368        exp.Variance: rename_func("varSamp"),
369        exp.SchemaCommentProperty: lambda self, e: self.naked_property(e),
370        exp.Stddev: rename_func("stddevSamp"),
371        exp.Chr: rename_func("CHAR"),
372        exp.Lag: lambda self, e: self.func(
373            "lagInFrame", e.this, e.args.get("offset"), e.args.get("default")
374        ),
375        exp.Lead: lambda self, e: self.func(
376            "leadInFrame", e.this, e.args.get("offset"), e.args.get("default")
377        ),
378        exp.Levenshtein: unsupported_args("ins_cost", "del_cost", "sub_cost", "max_dist")(
379            rename_func("editDistance")
380        ),
381        exp.ParseDatetime: lambda self, e: self.func(
382            "parseDateTime", e.this, e.args.get("format"), e.args.get("zone")
383        ),
384    }
385
386    PROPERTIES_LOCATION = {
387        **generator.Generator.PROPERTIES_LOCATION,
388        exp.DefinerProperty: exp.Properties.Location.POST_SCHEMA,
389        exp.OnCluster: exp.Properties.Location.POST_NAME,
390        exp.PartitionedByProperty: exp.Properties.Location.POST_SCHEMA,
391        exp.ToTableProperty: exp.Properties.Location.POST_NAME,
392        exp.UuidProperty: exp.Properties.Location.POST_NAME,
393        exp.VolatileProperty: exp.Properties.Location.UNSUPPORTED,
394    }
395
396    # There's no list in docs, but it can be found in Clickhouse code
397    # see `ClickHouse/src/Parsers/ParserCreate*.cpp`
398    ON_CLUSTER_TARGETS = {
399        "SCHEMA",  # Transpiled CREATE SCHEMA may have OnCluster property set
400        "DATABASE",
401        "TABLE",
402        "VIEW",
403        "DICTIONARY",
404        "INDEX",
405        "FUNCTION",
406        "NAMED COLLECTION",
407    }
408
409    # https://clickhouse.com/docs/en/sql-reference/data-types/nullable
410    NON_NULLABLE_TYPES = {
411        exp.DType.ARRAY,
412        exp.DType.MAP,
413        exp.DType.STRUCT,
414        exp.DType.POINT,
415        exp.DType.RING,
416        exp.DType.LINESTRING,
417        exp.DType.MULTILINESTRING,
418        exp.DType.POLYGON,
419        exp.DType.MULTIPOLYGON,
420    }
421
422    def groupconcat_sql(self, expression: exp.GroupConcat) -> str:
423        this = expression.this
424        separator = expression.args.get("separator")
425
426        if isinstance(this, exp.Limit) and this.this:
427            limit = this
428            this = limit.this.pop()
429            return self.sql(
430                exp.ParameterizedAgg(
431                    this="groupConcat",
432                    params=[this],
433                    expressions=[separator, limit.expression],
434                )
435            )
436
437        if separator:
438            return self.sql(
439                exp.ParameterizedAgg(
440                    this="groupConcat",
441                    params=[this],
442                    expressions=[separator],
443                )
444            )
445
446        return self.func("groupConcat", this)
447
448    def offset_sql(self, expression: exp.Offset) -> str:
449        offset = super().offset_sql(expression)
450
451        # OFFSET ... FETCH syntax requires a "ROW" or "ROWS" keyword
452        # https://clickhouse.com/docs/sql-reference/statements/select/offset
453        parent = expression.parent
454        if isinstance(parent, exp.Select) and isinstance(parent.args.get("limit"), exp.Fetch):
455            offset = f"{offset} ROWS"
456
457        return offset
458
459    def strtodate_sql(self, expression: exp.StrToDate) -> str:
460        strtodate_sql = self.function_fallback_sql(expression)
461
462        if not isinstance(expression.parent, exp.Cast):
463            # StrToDate returns DATEs in other dialects (eg. postgres), so
464            # this branch aims to improve the transpilation to clickhouse
465            return self.cast_sql(exp.cast(expression, "DATE"))
466
467        return strtodate_sql
468
469    def cast_sql(self, expression: exp.Cast, safe_prefix: str | None = None) -> str:
470        this = expression.this
471
472        if isinstance(this, exp.StrToDate) and expression.to == exp.DType.DATETIME.into_expr():
473            return self.sql(this)
474
475        return super().cast_sql(expression, safe_prefix=safe_prefix)
476
477    def trycast_sql(self, expression: exp.TryCast) -> str:
478        dtype = expression.to
479        if not dtype.is_type(*self.NON_NULLABLE_TYPES, check_nullable=True):
480            # Casting x into Nullable(T) appears to behave similarly to TRY_CAST(x AS T)
481            dtype.set("nullable", True)
482
483        return super().cast_sql(expression)
484
485    def _jsonpathsubscript_sql(self, expression: exp.JSONPathSubscript) -> str:
486        this = self.json_path_part(expression.this)
487        return str(int(this) + 1) if is_int(this) else this
488
489    def likeproperty_sql(self, expression: exp.LikeProperty) -> str:
490        return f"AS {self.sql(expression, 'this')}"
491
492    def _any_to_has(
493        self,
494        expression: exp.EQ | exp.NEQ,
495        default: t.Callable[[t.Any], str],
496        prefix: str = "",
497    ) -> str:
498        if isinstance(expression.left, exp.Any):
499            arr = expression.left
500            this = expression.right
501        elif isinstance(expression.right, exp.Any):
502            arr = expression.right
503            this = expression.left
504        else:
505            return default(expression)
506
507        return prefix + self.func("has", arr.this.unnest(), this)
508
509    def eq_sql(self, expression: exp.EQ) -> str:
510        return self._any_to_has(expression, super().eq_sql)
511
512    def neq_sql(self, expression: exp.NEQ) -> str:
513        return self._any_to_has(expression, super().neq_sql, "NOT ")
514
515    def regexpilike_sql(self, expression: exp.RegexpILike) -> str:
516        # Manually add a flag to make the search case-insensitive
517        regex = self.func("CONCAT", "'(?i)'", expression.expression)
518        return self.func("match", expression.this, regex)
519
520    def datatype_sql(self, expression: exp.DataType) -> str:
521        # String is the standard ClickHouse type, every other variant is just an alias.
522        # Additionally, any supplied length parameter will be ignored.
523        #
524        # https://clickhouse.com/docs/en/sql-reference/data-types/string
525        if expression.this in self.STRING_TYPE_MAPPING:
526            dtype = "String"
527        else:
528            dtype = super().datatype_sql(expression)
529
530        # This section changes the type to `Nullable(...)` if the following conditions hold:
531        # - It's marked as nullable - this ensures we won't wrap ClickHouse types with `Nullable`
532        #   and change their semantics
533        # - It's not the key type of a `Map`. This is because ClickHouse enforces the following
534        #   constraint: "Type of Map key must be a type, that can be represented by integer or
535        #   String or FixedString (possibly LowCardinality) or UUID or IPv6"
536        # - It's not a composite type, e.g. `Nullable(Array(...))` is not a valid type
537        parent = expression.parent
538        nullable = expression.args.get("nullable")
539        if nullable is True or (
540            nullable is None
541            and not (
542                isinstance(parent, exp.DataType)
543                and parent.is_type(exp.DType.MAP, check_nullable=True)
544                and expression.index in (None, 0)
545            )
546            and not expression.is_type(*self.NON_NULLABLE_TYPES, check_nullable=True)
547        ):
548            dtype = f"Nullable({dtype})"
549
550        return dtype
551
552    def cte_sql(self, expression: exp.CTE) -> str:
553        if expression.args.get("scalar"):
554            this = self.sql(expression, "this")
555            alias = self.sql(expression, "alias")
556            return f"{this} AS {alias}"
557
558        return super().cte_sql(expression)
559
560    def after_limit_modifiers(self, expression: exp.Expr) -> list[str]:
561        return super().after_limit_modifiers(expression) + [
562            (
563                self.seg("SETTINGS ") + self.expressions(expression, key="settings", flat=True)
564                if expression.args.get("settings")
565                else ""
566            ),
567            (
568                self.seg("FORMAT ") + self.sql(expression, "format")
569                if expression.args.get("format")
570                else ""
571            ),
572        ]
573
574    def placeholder_sql(self, expression: exp.Placeholder) -> str:
575        return f"{{{expression.name}: {self.sql(expression, 'kind')}}}"
576
577    def oncluster_sql(self, expression: exp.OnCluster) -> str:
578        return f"ON CLUSTER {self.sql(expression, 'this')}"
579
580    def createable_sql(self, expression: exp.Create, locations: defaultdict) -> str:
581        if expression.kind in self.ON_CLUSTER_TARGETS and locations.get(
582            exp.Properties.Location.POST_NAME
583        ):
584            this_name = self.sql(
585                expression.this if isinstance(expression.this, exp.Schema) else expression,
586                "this",
587            )
588            this_properties = " ".join(
589                [self.sql(prop) for prop in locations[exp.Properties.Location.POST_NAME]]
590            )
591            this_schema = self.schema_columns_sql(expression.this)
592            this_schema = f"{self.sep()}{this_schema}" if this_schema else ""
593
594            return f"{this_name}{self.sep()}{this_properties}{this_schema}"
595
596        return super().createable_sql(expression, locations)
597
598    def create_sql(self, expression: exp.Create) -> str:
599        # The comment property comes last in CTAS statements, i.e. after the query
600        query = expression.expression
601        if isinstance(query, exp.Query):
602            comment_prop = expression.find(exp.SchemaCommentProperty)
603            if comment_prop:
604                comment_prop.pop()
605                query.replace(exp.paren(query))
606        else:
607            comment_prop = None
608
609        create_sql = super().create_sql(expression)
610
611        comment_sql = self.sql(comment_prop)
612        comment_sql = f" {comment_sql}" if comment_sql else ""
613
614        return f"{create_sql}{comment_sql}"
615
616    def prewhere_sql(self, expression: exp.PreWhere) -> str:
617        this = self.indent(self.sql(expression, "this"))
618        return f"{self.seg('PREWHERE')}{self.sep()}{this}"
619
620    def indexcolumnconstraint_sql(self, expression: exp.IndexColumnConstraint) -> str:
621        this = self.sql(expression, "this")
622        this = f" {this}" if this else ""
623        expr = self.sql(expression, "expression")
624        expr = f" {expr}" if expr else ""
625        index_type = self.sql(expression, "index_type")
626        index_type = f" TYPE {index_type}" if index_type else ""
627        granularity = self.sql(expression, "granularity")
628        granularity = f" GRANULARITY {granularity}" if granularity else ""
629
630        return f"INDEX{this}{expr}{index_type}{granularity}"
631
632    def partition_sql(self, expression: exp.Partition) -> str:
633        return f"PARTITION {self.expressions(expression, flat=True)}"
634
635    def partitionid_sql(self, expression: exp.PartitionId) -> str:
636        return f"ID {self.sql(expression.this)}"
637
638    def replacepartition_sql(self, expression: exp.ReplacePartition) -> str:
639        return f"REPLACE {self.sql(expression.expression)} FROM {self.sql(expression, 'source')}"
640
641    def projectiondef_sql(self, expression: exp.ProjectionDef) -> str:
642        return f"PROJECTION {self.sql(expression.this)} {self.wrap(expression.expression)}"
643
644    def nestedjsonselect_sql(self, expression: exp.NestedJSONSelect) -> str:
645        return f"{self.sql(expression, 'this')}.^{self.sql(expression, 'expression')}"
646
647    def is_sql(self, expression: exp.Is) -> str:
648        is_sql = super().is_sql(expression)
649
650        if isinstance(expression.parent, exp.Not):
651            # value IS NOT NULL -> NOT (value IS NULL)
652            is_sql = self.wrap(is_sql)
653
654        return is_sql
655
656    def in_sql(self, expression: exp.In) -> str:
657        in_sql = super().in_sql(expression)
658
659        if isinstance(expression.parent, exp.Not) and expression.args.get("is_global"):
660            in_sql = in_sql.replace("GLOBAL IN", "GLOBAL NOT IN", 1)
661
662        return in_sql
663
664    def not_sql(self, expression: exp.Not) -> str:
665        if isinstance(expression.this, exp.In):
666            if expression.this.args.get("is_global"):
667                # let `GLOBAL IN` child interpose `NOT`
668                return self.sql(expression, "this")
669
670            expression.set("this", exp.paren(expression.this, copy=False))
671
672        return super().not_sql(expression)
673
674    def values_sql(self, expression: exp.Values, values_as_table: bool = True) -> str:
675        # If the VALUES clause contains tuples of expressions, we need to treat it
676        # as a table since Clickhouse will automatically alias it as such.
677        alias = expression.args.get("alias")
678
679        if alias and alias.args.get("columns") and expression.expressions:
680            values = expression.expressions[0].expressions
681            values_as_table = any(isinstance(value, exp.Tuple) for value in values)
682        else:
683            values_as_table = True
684
685        return super().values_sql(expression, values_as_table=values_as_table)
686
687    def timestamptrunc_sql(self, expression: exp.DateTrunc | exp.TimestampTrunc) -> str:
688        unit = unit_to_str(expression)
689        # https://clickhouse.com/docs/whats-new/changelog/2023#improvement
690        if self.dialect.version < (23, 12) and unit and unit.is_string:
691            unit = exp.Literal.string(unit.name.lower())
692        return self.func("dateTrunc", unit, expression.this, expression.args.get("zone"))
693
694    def datetrunc_sql(self, expression: exp.DateTrunc) -> str:
695        return self.timestamptrunc_sql(expression)
class ClickHouseGenerator(sqlglot.generator.Generator):
167class ClickHouseGenerator(generator.Generator):
168    SELECT_KINDS: tuple[str, ...] = ()
169    TRY_SUPPORTED = False
170    SUPPORTS_UESCAPE = False
171    SUPPORTS_DECODE_CASE = False
172
173    AFTER_HAVING_MODIFIER_TRANSFORMS = generator.AFTER_HAVING_MODIFIER_TRANSFORMS
174
175    QUERY_HINTS = False
176    STRUCT_DELIMITER = ("(", ")")
177    NVL2_SUPPORTED = False
178    TABLESAMPLE_REQUIRES_PARENS = False
179    TABLESAMPLE_SIZE_IS_ROWS = False
180    TABLESAMPLE_KEYWORDS = "SAMPLE"
181    LAST_DAY_SUPPORTS_DATE_PART = False
182    CAN_IMPLEMENT_ARRAY_ANY = True
183    SUPPORTS_TO_NUMBER = False
184    JOIN_HINTS = False
185    TABLE_HINTS = False
186    GROUPINGS_SEP = ""
187    SET_OP_MODIFIERS = False
188    ARRAY_SIZE_NAME = "LENGTH"
189    WRAP_DERIVED_VALUES = False
190
191    STRING_TYPE_MAPPING: t.ClassVar = {
192        exp.DType.BLOB: "String",
193        exp.DType.CHAR: "String",
194        exp.DType.LONGBLOB: "String",
195        exp.DType.LONGTEXT: "String",
196        exp.DType.MEDIUMBLOB: "String",
197        exp.DType.MEDIUMTEXT: "String",
198        exp.DType.TINYBLOB: "String",
199        exp.DType.TINYTEXT: "String",
200        exp.DType.TEXT: "String",
201        exp.DType.VARBINARY: "String",
202        exp.DType.VARCHAR: "String",
203    }
204
205    SUPPORTED_JSON_PATH_PARTS = {
206        exp.JSONPathKey,
207        exp.JSONPathRoot,
208        exp.JSONPathSubscript,
209    }
210
211    TYPE_MAPPING = {
212        **generator.Generator.TYPE_MAPPING,
213        exp.DType.BLOB: "String",
214        exp.DType.CHAR: "String",
215        exp.DType.LONGBLOB: "String",
216        exp.DType.LONGTEXT: "String",
217        exp.DType.MEDIUMBLOB: "String",
218        exp.DType.MEDIUMTEXT: "String",
219        exp.DType.TINYBLOB: "String",
220        exp.DType.TINYTEXT: "String",
221        exp.DType.TEXT: "String",
222        exp.DType.VARBINARY: "String",
223        exp.DType.VARCHAR: "String",
224        exp.DType.ARRAY: "Array",
225        exp.DType.BOOLEAN: "Bool",
226        exp.DType.BIGINT: "Int64",
227        exp.DType.DATE32: "Date32",
228        exp.DType.DATETIME: "DateTime",
229        exp.DType.DATETIME2: "DateTime",
230        exp.DType.SMALLDATETIME: "DateTime",
231        exp.DType.DATETIME64: "DateTime64",
232        exp.DType.DECIMAL: "Decimal",
233        exp.DType.DECIMAL32: "Decimal32",
234        exp.DType.DECIMAL64: "Decimal64",
235        exp.DType.DECIMAL128: "Decimal128",
236        exp.DType.DECIMAL256: "Decimal256",
237        exp.DType.TIMESTAMP: "DateTime",
238        exp.DType.TIMESTAMPNTZ: "DateTime",
239        exp.DType.TIMESTAMPTZ: "DateTime",
240        exp.DType.DOUBLE: "Float64",
241        exp.DType.ENUM: "Enum",
242        exp.DType.ENUM8: "Enum8",
243        exp.DType.ENUM16: "Enum16",
244        exp.DType.FIXEDSTRING: "FixedString",
245        exp.DType.FLOAT: "Float32",
246        exp.DType.INT: "Int32",
247        exp.DType.MEDIUMINT: "Int32",
248        exp.DType.INT128: "Int128",
249        exp.DType.INT256: "Int256",
250        exp.DType.LOWCARDINALITY: "LowCardinality",
251        exp.DType.MAP: "Map",
252        exp.DType.NESTED: "Nested",
253        exp.DType.NOTHING: "Nothing",
254        exp.DType.SMALLINT: "Int16",
255        exp.DType.STRUCT: "Tuple",
256        exp.DType.TINYINT: "Int8",
257        exp.DType.UBIGINT: "UInt64",
258        exp.DType.UINT: "UInt32",
259        exp.DType.UINT128: "UInt128",
260        exp.DType.UINT256: "UInt256",
261        exp.DType.USMALLINT: "UInt16",
262        exp.DType.UTINYINT: "UInt8",
263        exp.DType.IPV4: "IPv4",
264        exp.DType.IPV6: "IPv6",
265        exp.DType.POINT: "Point",
266        exp.DType.RING: "Ring",
267        exp.DType.LINESTRING: "LineString",
268        exp.DType.MULTILINESTRING: "MultiLineString",
269        exp.DType.POLYGON: "Polygon",
270        exp.DType.MULTIPOLYGON: "MultiPolygon",
271        exp.DType.AGGREGATEFUNCTION: "AggregateFunction",
272        exp.DType.SIMPLEAGGREGATEFUNCTION: "SimpleAggregateFunction",
273        exp.DType.DYNAMIC: "Dynamic",
274    }
275
276    TRANSFORMS = {
277        **generator.Generator.TRANSFORMS,
278        exp.AnyValue: rename_func("any"),
279        exp.ApproxDistinct: rename_func("uniq"),
280        exp.ArrayDistinct: rename_func("arrayDistinct"),
281        exp.ArrayConcat: rename_func("arrayConcat"),
282        exp.ArrayContains: rename_func("has"),
283        exp.ArrayFilter: lambda self, e: self.func("arrayFilter", e.expression, e.this),
284        exp.Transform: lambda self, e: self.func("arrayMap", e.expression, e.this),
285        exp.ArrayRemove: remove_from_array_using_filter,
286        exp.ArrayReverse: rename_func("arrayReverse"),
287        exp.ArraySlice: rename_func("arraySlice"),
288        exp.ArraySum: rename_func("arraySum"),
289        exp.ArrayMax: rename_func("arrayMax"),
290        exp.ArrayMin: rename_func("arrayMin"),
291        exp.ArgMax: arg_max_or_min_no_count("argMax"),
292        exp.ArgMin: arg_max_or_min_no_count("argMin"),
293        exp.Array: inline_array_sql,
294        exp.CityHash64: rename_func("cityHash64"),
295        exp.CastToStrType: rename_func("CAST"),
296        exp.CurrentDatabase: rename_func("CURRENT_DATABASE"),
297        exp.CurrentSchemas: rename_func("CURRENT_SCHEMAS"),
298        exp.CountIf: rename_func("countIf"),
299        exp.CosineDistance: rename_func("cosineDistance"),
300        exp.CompressColumnConstraint: lambda self, e: (
301            f"CODEC({self.expressions(e, key='this', flat=True)})"
302        ),
303        exp.ComputedColumnConstraint: lambda self, e: (
304            f"{'MATERIALIZED' if e.args.get('persisted') else 'ALIAS'} {self.sql(e, 'this')}"
305        ),
306        exp.CurrentDate: lambda self, e: self.func("CURRENT_DATE"),
307        exp.CurrentVersion: rename_func("VERSION"),
308        exp.DateAdd: _datetime_delta_sql("DATE_ADD"),
309        exp.DateDiff: _datetime_delta_sql("DATE_DIFF"),
310        exp.DateStrToDate: rename_func("toDate"),
311        exp.DateSub: _datetime_delta_sql("DATE_SUB"),
312        exp.Explode: rename_func("arrayJoin"),
313        exp.FarmFingerprint: rename_func("farmFingerprint64"),
314        exp.Final: lambda self, e: f"{self.sql(e, 'this')} FINAL",
315        exp.IsNan: rename_func("isNaN"),
316        exp.JarowinklerSimilarity: jarowinkler_similarity("jaroWinklerSimilarity"),
317        exp.JSONCast: _json_cast_sql,
318        exp.JSONExtract: json_extract_segments("JSONExtractString", quoted_index=False),
319        exp.JSONExtractScalar: json_extract_segments("JSONExtractString", quoted_index=False),
320        exp.JSONPathKey: json_path_key_only_name,
321        exp.JSONPathRoot: lambda *_: "",
322        exp.Length: length_or_char_length_sql,
323        exp.Map: _map_sql,
324        exp.Median: rename_func("median"),
325        exp.Nullif: rename_func("nullIf"),
326        exp.PartitionedByProperty: lambda self, e: f"PARTITION BY {self.sql(e, 'this')}",
327        exp.Pivot: no_pivot_sql,
328        exp.Quantile: _quantile_sql,
329        exp.RegexpLike: lambda self, e: self.func("match", e.this, e.expression),
330        exp.Rand: rename_func("randCanonical"),
331        exp.StartsWith: rename_func("startsWith"),
332        exp.Struct: rename_func("tuple"),
333        exp.Trunc: rename_func("trunc"),
334        exp.EndsWith: rename_func("endsWith"),
335        exp.EuclideanDistance: rename_func("L2Distance"),
336        exp.StrPosition: lambda self, e: strposition_sql(
337            self,
338            e,
339            func_name="POSITION",
340            supports_position=True,
341            use_ansi_position=False,
342        ),
343        exp.TimeToStr: lambda self, e: self.func(
344            "formatDateTime",
345            e.this.this if isinstance(e.this, exp.TsOrDsToTimestamp) else e.this,
346            self.format_time(e),
347            e.args.get("zone"),
348        ),
349        exp.TimeStrToTime: _timestrtotime_sql,
350        exp.TimestampAdd: _datetime_delta_sql("TIMESTAMP_ADD"),
351        exp.TimestampSub: _datetime_delta_sql("TIMESTAMP_SUB"),
352        exp.Typeof: rename_func("toTypeName"),
353        exp.VarMap: _map_sql,
354        exp.Xor: lambda self, e: self.func("xor", e.this, e.expression),
355        exp.MD5Digest: rename_func("MD5"),
356        exp.MD5: lambda self, e: self.func("LOWER", self.func("HEX", self.func("MD5", e.this))),
357        exp.SHA: rename_func("SHA1"),
358        exp.SHA1Digest: rename_func("SHA1"),
359        exp.SHA2: sha256_sql,
360        exp.SHA2Digest: sha2_digest_sql,
361        exp.Split: lambda self, e: self.func(
362            "splitByString", e.args.get("expression"), e.this, e.args.get("limit")
363        ),
364        exp.RegexpSplit: lambda self, e: self.func(
365            "splitByRegexp", e.args.get("expression"), e.this, e.args.get("limit")
366        ),
367        exp.UnixToTime: _unix_to_time_sql,
368        exp.Trim: lambda self, e: trim_sql(self, e, default_trim_type="BOTH"),
369        exp.Variance: rename_func("varSamp"),
370        exp.SchemaCommentProperty: lambda self, e: self.naked_property(e),
371        exp.Stddev: rename_func("stddevSamp"),
372        exp.Chr: rename_func("CHAR"),
373        exp.Lag: lambda self, e: self.func(
374            "lagInFrame", e.this, e.args.get("offset"), e.args.get("default")
375        ),
376        exp.Lead: lambda self, e: self.func(
377            "leadInFrame", e.this, e.args.get("offset"), e.args.get("default")
378        ),
379        exp.Levenshtein: unsupported_args("ins_cost", "del_cost", "sub_cost", "max_dist")(
380            rename_func("editDistance")
381        ),
382        exp.ParseDatetime: lambda self, e: self.func(
383            "parseDateTime", e.this, e.args.get("format"), e.args.get("zone")
384        ),
385    }
386
387    PROPERTIES_LOCATION = {
388        **generator.Generator.PROPERTIES_LOCATION,
389        exp.DefinerProperty: exp.Properties.Location.POST_SCHEMA,
390        exp.OnCluster: exp.Properties.Location.POST_NAME,
391        exp.PartitionedByProperty: exp.Properties.Location.POST_SCHEMA,
392        exp.ToTableProperty: exp.Properties.Location.POST_NAME,
393        exp.UuidProperty: exp.Properties.Location.POST_NAME,
394        exp.VolatileProperty: exp.Properties.Location.UNSUPPORTED,
395    }
396
397    # There's no list in docs, but it can be found in Clickhouse code
398    # see `ClickHouse/src/Parsers/ParserCreate*.cpp`
399    ON_CLUSTER_TARGETS = {
400        "SCHEMA",  # Transpiled CREATE SCHEMA may have OnCluster property set
401        "DATABASE",
402        "TABLE",
403        "VIEW",
404        "DICTIONARY",
405        "INDEX",
406        "FUNCTION",
407        "NAMED COLLECTION",
408    }
409
410    # https://clickhouse.com/docs/en/sql-reference/data-types/nullable
411    NON_NULLABLE_TYPES = {
412        exp.DType.ARRAY,
413        exp.DType.MAP,
414        exp.DType.STRUCT,
415        exp.DType.POINT,
416        exp.DType.RING,
417        exp.DType.LINESTRING,
418        exp.DType.MULTILINESTRING,
419        exp.DType.POLYGON,
420        exp.DType.MULTIPOLYGON,
421    }
422
423    def groupconcat_sql(self, expression: exp.GroupConcat) -> str:
424        this = expression.this
425        separator = expression.args.get("separator")
426
427        if isinstance(this, exp.Limit) and this.this:
428            limit = this
429            this = limit.this.pop()
430            return self.sql(
431                exp.ParameterizedAgg(
432                    this="groupConcat",
433                    params=[this],
434                    expressions=[separator, limit.expression],
435                )
436            )
437
438        if separator:
439            return self.sql(
440                exp.ParameterizedAgg(
441                    this="groupConcat",
442                    params=[this],
443                    expressions=[separator],
444                )
445            )
446
447        return self.func("groupConcat", this)
448
449    def offset_sql(self, expression: exp.Offset) -> str:
450        offset = super().offset_sql(expression)
451
452        # OFFSET ... FETCH syntax requires a "ROW" or "ROWS" keyword
453        # https://clickhouse.com/docs/sql-reference/statements/select/offset
454        parent = expression.parent
455        if isinstance(parent, exp.Select) and isinstance(parent.args.get("limit"), exp.Fetch):
456            offset = f"{offset} ROWS"
457
458        return offset
459
460    def strtodate_sql(self, expression: exp.StrToDate) -> str:
461        strtodate_sql = self.function_fallback_sql(expression)
462
463        if not isinstance(expression.parent, exp.Cast):
464            # StrToDate returns DATEs in other dialects (eg. postgres), so
465            # this branch aims to improve the transpilation to clickhouse
466            return self.cast_sql(exp.cast(expression, "DATE"))
467
468        return strtodate_sql
469
470    def cast_sql(self, expression: exp.Cast, safe_prefix: str | None = None) -> str:
471        this = expression.this
472
473        if isinstance(this, exp.StrToDate) and expression.to == exp.DType.DATETIME.into_expr():
474            return self.sql(this)
475
476        return super().cast_sql(expression, safe_prefix=safe_prefix)
477
478    def trycast_sql(self, expression: exp.TryCast) -> str:
479        dtype = expression.to
480        if not dtype.is_type(*self.NON_NULLABLE_TYPES, check_nullable=True):
481            # Casting x into Nullable(T) appears to behave similarly to TRY_CAST(x AS T)
482            dtype.set("nullable", True)
483
484        return super().cast_sql(expression)
485
486    def _jsonpathsubscript_sql(self, expression: exp.JSONPathSubscript) -> str:
487        this = self.json_path_part(expression.this)
488        return str(int(this) + 1) if is_int(this) else this
489
490    def likeproperty_sql(self, expression: exp.LikeProperty) -> str:
491        return f"AS {self.sql(expression, 'this')}"
492
493    def _any_to_has(
494        self,
495        expression: exp.EQ | exp.NEQ,
496        default: t.Callable[[t.Any], str],
497        prefix: str = "",
498    ) -> str:
499        if isinstance(expression.left, exp.Any):
500            arr = expression.left
501            this = expression.right
502        elif isinstance(expression.right, exp.Any):
503            arr = expression.right
504            this = expression.left
505        else:
506            return default(expression)
507
508        return prefix + self.func("has", arr.this.unnest(), this)
509
510    def eq_sql(self, expression: exp.EQ) -> str:
511        return self._any_to_has(expression, super().eq_sql)
512
513    def neq_sql(self, expression: exp.NEQ) -> str:
514        return self._any_to_has(expression, super().neq_sql, "NOT ")
515
516    def regexpilike_sql(self, expression: exp.RegexpILike) -> str:
517        # Manually add a flag to make the search case-insensitive
518        regex = self.func("CONCAT", "'(?i)'", expression.expression)
519        return self.func("match", expression.this, regex)
520
521    def datatype_sql(self, expression: exp.DataType) -> str:
522        # String is the standard ClickHouse type, every other variant is just an alias.
523        # Additionally, any supplied length parameter will be ignored.
524        #
525        # https://clickhouse.com/docs/en/sql-reference/data-types/string
526        if expression.this in self.STRING_TYPE_MAPPING:
527            dtype = "String"
528        else:
529            dtype = super().datatype_sql(expression)
530
531        # This section changes the type to `Nullable(...)` if the following conditions hold:
532        # - It's marked as nullable - this ensures we won't wrap ClickHouse types with `Nullable`
533        #   and change their semantics
534        # - It's not the key type of a `Map`. This is because ClickHouse enforces the following
535        #   constraint: "Type of Map key must be a type, that can be represented by integer or
536        #   String or FixedString (possibly LowCardinality) or UUID or IPv6"
537        # - It's not a composite type, e.g. `Nullable(Array(...))` is not a valid type
538        parent = expression.parent
539        nullable = expression.args.get("nullable")
540        if nullable is True or (
541            nullable is None
542            and not (
543                isinstance(parent, exp.DataType)
544                and parent.is_type(exp.DType.MAP, check_nullable=True)
545                and expression.index in (None, 0)
546            )
547            and not expression.is_type(*self.NON_NULLABLE_TYPES, check_nullable=True)
548        ):
549            dtype = f"Nullable({dtype})"
550
551        return dtype
552
553    def cte_sql(self, expression: exp.CTE) -> str:
554        if expression.args.get("scalar"):
555            this = self.sql(expression, "this")
556            alias = self.sql(expression, "alias")
557            return f"{this} AS {alias}"
558
559        return super().cte_sql(expression)
560
561    def after_limit_modifiers(self, expression: exp.Expr) -> list[str]:
562        return super().after_limit_modifiers(expression) + [
563            (
564                self.seg("SETTINGS ") + self.expressions(expression, key="settings", flat=True)
565                if expression.args.get("settings")
566                else ""
567            ),
568            (
569                self.seg("FORMAT ") + self.sql(expression, "format")
570                if expression.args.get("format")
571                else ""
572            ),
573        ]
574
575    def placeholder_sql(self, expression: exp.Placeholder) -> str:
576        return f"{{{expression.name}: {self.sql(expression, 'kind')}}}"
577
578    def oncluster_sql(self, expression: exp.OnCluster) -> str:
579        return f"ON CLUSTER {self.sql(expression, 'this')}"
580
581    def createable_sql(self, expression: exp.Create, locations: defaultdict) -> str:
582        if expression.kind in self.ON_CLUSTER_TARGETS and locations.get(
583            exp.Properties.Location.POST_NAME
584        ):
585            this_name = self.sql(
586                expression.this if isinstance(expression.this, exp.Schema) else expression,
587                "this",
588            )
589            this_properties = " ".join(
590                [self.sql(prop) for prop in locations[exp.Properties.Location.POST_NAME]]
591            )
592            this_schema = self.schema_columns_sql(expression.this)
593            this_schema = f"{self.sep()}{this_schema}" if this_schema else ""
594
595            return f"{this_name}{self.sep()}{this_properties}{this_schema}"
596
597        return super().createable_sql(expression, locations)
598
599    def create_sql(self, expression: exp.Create) -> str:
600        # The comment property comes last in CTAS statements, i.e. after the query
601        query = expression.expression
602        if isinstance(query, exp.Query):
603            comment_prop = expression.find(exp.SchemaCommentProperty)
604            if comment_prop:
605                comment_prop.pop()
606                query.replace(exp.paren(query))
607        else:
608            comment_prop = None
609
610        create_sql = super().create_sql(expression)
611
612        comment_sql = self.sql(comment_prop)
613        comment_sql = f" {comment_sql}" if comment_sql else ""
614
615        return f"{create_sql}{comment_sql}"
616
617    def prewhere_sql(self, expression: exp.PreWhere) -> str:
618        this = self.indent(self.sql(expression, "this"))
619        return f"{self.seg('PREWHERE')}{self.sep()}{this}"
620
621    def indexcolumnconstraint_sql(self, expression: exp.IndexColumnConstraint) -> str:
622        this = self.sql(expression, "this")
623        this = f" {this}" if this else ""
624        expr = self.sql(expression, "expression")
625        expr = f" {expr}" if expr else ""
626        index_type = self.sql(expression, "index_type")
627        index_type = f" TYPE {index_type}" if index_type else ""
628        granularity = self.sql(expression, "granularity")
629        granularity = f" GRANULARITY {granularity}" if granularity else ""
630
631        return f"INDEX{this}{expr}{index_type}{granularity}"
632
633    def partition_sql(self, expression: exp.Partition) -> str:
634        return f"PARTITION {self.expressions(expression, flat=True)}"
635
636    def partitionid_sql(self, expression: exp.PartitionId) -> str:
637        return f"ID {self.sql(expression.this)}"
638
639    def replacepartition_sql(self, expression: exp.ReplacePartition) -> str:
640        return f"REPLACE {self.sql(expression.expression)} FROM {self.sql(expression, 'source')}"
641
642    def projectiondef_sql(self, expression: exp.ProjectionDef) -> str:
643        return f"PROJECTION {self.sql(expression.this)} {self.wrap(expression.expression)}"
644
645    def nestedjsonselect_sql(self, expression: exp.NestedJSONSelect) -> str:
646        return f"{self.sql(expression, 'this')}.^{self.sql(expression, 'expression')}"
647
648    def is_sql(self, expression: exp.Is) -> str:
649        is_sql = super().is_sql(expression)
650
651        if isinstance(expression.parent, exp.Not):
652            # value IS NOT NULL -> NOT (value IS NULL)
653            is_sql = self.wrap(is_sql)
654
655        return is_sql
656
657    def in_sql(self, expression: exp.In) -> str:
658        in_sql = super().in_sql(expression)
659
660        if isinstance(expression.parent, exp.Not) and expression.args.get("is_global"):
661            in_sql = in_sql.replace("GLOBAL IN", "GLOBAL NOT IN", 1)
662
663        return in_sql
664
665    def not_sql(self, expression: exp.Not) -> str:
666        if isinstance(expression.this, exp.In):
667            if expression.this.args.get("is_global"):
668                # let `GLOBAL IN` child interpose `NOT`
669                return self.sql(expression, "this")
670
671            expression.set("this", exp.paren(expression.this, copy=False))
672
673        return super().not_sql(expression)
674
675    def values_sql(self, expression: exp.Values, values_as_table: bool = True) -> str:
676        # If the VALUES clause contains tuples of expressions, we need to treat it
677        # as a table since Clickhouse will automatically alias it as such.
678        alias = expression.args.get("alias")
679
680        if alias and alias.args.get("columns") and expression.expressions:
681            values = expression.expressions[0].expressions
682            values_as_table = any(isinstance(value, exp.Tuple) for value in values)
683        else:
684            values_as_table = True
685
686        return super().values_sql(expression, values_as_table=values_as_table)
687
688    def timestamptrunc_sql(self, expression: exp.DateTrunc | exp.TimestampTrunc) -> str:
689        unit = unit_to_str(expression)
690        # https://clickhouse.com/docs/whats-new/changelog/2023#improvement
691        if self.dialect.version < (23, 12) and unit and unit.is_string:
692            unit = exp.Literal.string(unit.name.lower())
693        return self.func("dateTrunc", unit, expression.this, expression.args.get("zone"))
694
695    def datetrunc_sql(self, expression: exp.DateTrunc) -> str:
696        return self.timestamptrunc_sql(expression)

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

Arguments:
  • pretty: Whether 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: Always quote except for specials cases. 'safe': Only quote identifiers that are case insensitive.
  • normalize: Whether to normalize identifiers to lowercase. Default: False.
  • pad: The pad size in a formatted string. For example, this affects the indentation of a projection in a query, relative to its nesting level. Default: 2.
  • indent: The indentation size in a formatted string. For example, this affects the indentation of subqueries and filters under a WHERE clause. Default: 2.
  • normalize_functions: How to normalize 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: Whether 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 to preserve comments in the output SQL code. Default: True
SELECT_KINDS: tuple[str, ...] = ()
TRY_SUPPORTED = False
SUPPORTS_UESCAPE = False
SUPPORTS_DECODE_CASE = False
AFTER_HAVING_MODIFIER_TRANSFORMS = {'windows': <function <lambda>>, 'qualify': <function <lambda>>}
QUERY_HINTS = False
STRUCT_DELIMITER = ('(', ')')
NVL2_SUPPORTED = False
TABLESAMPLE_REQUIRES_PARENS = False
TABLESAMPLE_SIZE_IS_ROWS = False
TABLESAMPLE_KEYWORDS = 'SAMPLE'
LAST_DAY_SUPPORTS_DATE_PART = False
CAN_IMPLEMENT_ARRAY_ANY = True
SUPPORTS_TO_NUMBER = False
JOIN_HINTS = False
TABLE_HINTS = False
GROUPINGS_SEP = ''
SET_OP_MODIFIERS = False
ARRAY_SIZE_NAME = 'LENGTH'
WRAP_DERIVED_VALUES = False
STRING_TYPE_MAPPING: ClassVar = {<DType.BLOB: 'BLOB'>: 'String', <DType.CHAR: 'CHAR'>: 'String', <DType.LONGBLOB: 'LONGBLOB'>: 'String', <DType.LONGTEXT: 'LONGTEXT'>: 'String', <DType.MEDIUMBLOB: 'MEDIUMBLOB'>: 'String', <DType.MEDIUMTEXT: 'MEDIUMTEXT'>: 'String', <DType.TINYBLOB: 'TINYBLOB'>: 'String', <DType.TINYTEXT: 'TINYTEXT'>: 'String', <DType.TEXT: 'TEXT'>: 'String', <DType.VARBINARY: 'VARBINARY'>: 'String', <DType.VARCHAR: 'VARCHAR'>: 'String'}
TYPE_MAPPING = {<DType.DATETIME2: 'DATETIME2'>: 'DateTime', <DType.NCHAR: 'NCHAR'>: 'CHAR', <DType.NVARCHAR: 'NVARCHAR'>: 'VARCHAR', <DType.MEDIUMTEXT: 'MEDIUMTEXT'>: 'String', <DType.LONGTEXT: 'LONGTEXT'>: 'String', <DType.TINYTEXT: 'TINYTEXT'>: 'String', <DType.BLOB: 'BLOB'>: 'String', <DType.MEDIUMBLOB: 'MEDIUMBLOB'>: 'String', <DType.LONGBLOB: 'LONGBLOB'>: 'String', <DType.TINYBLOB: 'TINYBLOB'>: 'String', <DType.INET: 'INET'>: 'INET', <DType.ROWVERSION: 'ROWVERSION'>: 'VARBINARY', <DType.SMALLDATETIME: 'SMALLDATETIME'>: 'DateTime', <DType.CHAR: 'CHAR'>: 'String', <DType.TEXT: 'TEXT'>: 'String', <DType.VARBINARY: 'VARBINARY'>: 'String', <DType.VARCHAR: 'VARCHAR'>: 'String', <DType.ARRAY: 'ARRAY'>: 'Array', <DType.BOOLEAN: 'BOOLEAN'>: 'Bool', <DType.BIGINT: 'BIGINT'>: 'Int64', <DType.DATE32: 'DATE32'>: 'Date32', <DType.DATETIME: 'DATETIME'>: 'DateTime', <DType.DATETIME64: 'DATETIME64'>: 'DateTime64', <DType.DECIMAL: 'DECIMAL'>: 'Decimal', <DType.DECIMAL32: 'DECIMAL32'>: 'Decimal32', <DType.DECIMAL64: 'DECIMAL64'>: 'Decimal64', <DType.DECIMAL128: 'DECIMAL128'>: 'Decimal128', <DType.DECIMAL256: 'DECIMAL256'>: 'Decimal256', <DType.TIMESTAMP: 'TIMESTAMP'>: 'DateTime', <DType.TIMESTAMPNTZ: 'TIMESTAMPNTZ'>: 'DateTime', <DType.TIMESTAMPTZ: 'TIMESTAMPTZ'>: 'DateTime', <DType.DOUBLE: 'DOUBLE'>: 'Float64', <DType.ENUM: 'ENUM'>: 'Enum', <DType.ENUM8: 'ENUM8'>: 'Enum8', <DType.ENUM16: 'ENUM16'>: 'Enum16', <DType.FIXEDSTRING: 'FIXEDSTRING'>: 'FixedString', <DType.FLOAT: 'FLOAT'>: 'Float32', <DType.INT: 'INT'>: 'Int32', <DType.MEDIUMINT: 'MEDIUMINT'>: 'Int32', <DType.INT128: 'INT128'>: 'Int128', <DType.INT256: 'INT256'>: 'Int256', <DType.LOWCARDINALITY: 'LOWCARDINALITY'>: 'LowCardinality', <DType.MAP: 'MAP'>: 'Map', <DType.NESTED: 'NESTED'>: 'Nested', <DType.NOTHING: 'NOTHING'>: 'Nothing', <DType.SMALLINT: 'SMALLINT'>: 'Int16', <DType.STRUCT: 'STRUCT'>: 'Tuple', <DType.TINYINT: 'TINYINT'>: 'Int8', <DType.UBIGINT: 'UBIGINT'>: 'UInt64', <DType.UINT: 'UINT'>: 'UInt32', <DType.UINT128: 'UINT128'>: 'UInt128', <DType.UINT256: 'UINT256'>: 'UInt256', <DType.USMALLINT: 'USMALLINT'>: 'UInt16', <DType.UTINYINT: 'UTINYINT'>: 'UInt8', <DType.IPV4: 'IPV4'>: 'IPv4', <DType.IPV6: 'IPV6'>: 'IPv6', <DType.POINT: 'POINT'>: 'Point', <DType.RING: 'RING'>: 'Ring', <DType.LINESTRING: 'LINESTRING'>: 'LineString', <DType.MULTILINESTRING: 'MULTILINESTRING'>: 'MultiLineString', <DType.POLYGON: 'POLYGON'>: 'Polygon', <DType.MULTIPOLYGON: 'MULTIPOLYGON'>: 'MultiPolygon', <DType.AGGREGATEFUNCTION: 'AGGREGATEFUNCTION'>: 'AggregateFunction', <DType.SIMPLEAGGREGATEFUNCTION: 'SIMPLEAGGREGATEFUNCTION'>: 'SimpleAggregateFunction', <DType.DYNAMIC: 'DYNAMIC'>: 'Dynamic'}
TRANSFORMS = {<class 'sqlglot.expressions.query.JSONPathKey'>: <function json_path_key_only_name>, <class 'sqlglot.expressions.query.JSONPathRoot'>: <function ClickHouseGenerator.<lambda>>, <class 'sqlglot.expressions.query.JSONPathSubscript'>: <function <lambda>>, <class 'sqlglot.expressions.core.Adjacent'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.AllowedValuesProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.query.AnalyzeColumns'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.query.AnalyzeWith'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.array.ArrayContainedBy'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.array.ArrayContainsAll'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.array.ArrayOverlaps'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.AssumeColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.AutoRefreshProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.BackupProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.CaseSpecificColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.CalledOnNullInputProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.math.Ceil'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.CharacterSetColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.CharacterSetProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.ClusteredColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.CollateColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.CommentColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.functions.ConnectByRoot'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.string.ConvertToCharset'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.CopyGrantsProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.CredentialsProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.functions.CurrentCatalog'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.functions.SessionUser'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.DateFormatColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.DefaultColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.ApiProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.ApplicationProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.CatalogProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.ComputeProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.DatabaseProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.DynamicProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.EmptyProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.EncodeColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.query.EndStatement'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.EnviromentProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.HandlerProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.ParameterStyleProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.EphemeralColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.ExcludeColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.ExecuteAsProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.query.Except'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.ExternalProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.math.Floor'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.query.Get'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.GlobalProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.HeapProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.HybridProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.IcebergProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.InheritsProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.InlineLengthColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.InputModelProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.query.Intersect'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.datatypes.IntervalSpan'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.functions.Int64'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.json.JSONBContainsAnyTopKeys'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.json.JSONBContainsAllTopKeys'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.json.JSONBDeleteAtPath'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.json.JSONBPathExists'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.json.JSONObject'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.json.JSONObjectAgg'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.LanguageProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.LocationProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.LogProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.MaskingProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.MaterializedProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.functions.NetFunc'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.NetworkProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.NonClusteredColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.NoPrimaryIndexProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.NotForReplicationColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.OnCommitProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.OnProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.OnUpdateColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.core.Operator'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.OutputModelProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.core.ExtendsLeft'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.core.ExtendsRight'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.PathColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.PartitionedByBucket'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.PartitionByTruncate'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.core.PivotAny'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.array.PositionalColumn'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.ProjectionPolicyColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.InvisibleColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.ZeroFillColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.query.Put'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.RemoteWithConnectionModelProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.ReturnsProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.RowAccessProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.core.SafeFunc'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.SampleProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.SecureProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.SecurityIntegrationProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.SetConfigProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.SetProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.SettingsProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.SharingProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.SqlReadWriteProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.SqlSecurityProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.StabilityProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.query.Stream'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.StreamingTableProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.StrictProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.ddl.SwapTable'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.query.TableColumn'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.Tags'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.TemporaryProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.TitleColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.array.ToMap'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.ToTableProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.TransformModelProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.TransientProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.VirtualProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.ddl.TriggerExecute'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.query.Union'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.UnloggedProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.UsingTemplateProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.query.UsingData'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.UppercaseColumnConstraint'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.temporal.UtcDate'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.temporal.UtcTime'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.temporal.UtcTimestamp'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.query.Variadic'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.array.VarMap'>: <function _map_sql>, <class 'sqlglot.expressions.properties.ViewAttributeProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.VolatileProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.WithJournalTableProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.WithProcedureOptions'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.WithSchemaBindingProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.constraints.WithOperator'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.properties.ForceProperty'>: <function Generator.<lambda>>, <class 'sqlglot.expressions.aggregate.AnyValue'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.core.ApproxDistinct'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.array.ArrayDistinct'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.array.ArrayConcat'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.array.ArrayContains'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.array.ArrayFilter'>: <function ClickHouseGenerator.<lambda>>, <class 'sqlglot.expressions.array.Transform'>: <function ClickHouseGenerator.<lambda>>, <class 'sqlglot.expressions.array.ArrayRemove'>: <function remove_from_array_using_filter>, <class 'sqlglot.expressions.array.ArrayReverse'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.array.ArraySlice'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.array.ArraySum'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.array.ArrayMax'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.array.ArrayMin'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.aggregate.ArgMax'>: <function arg_max_or_min_no_count.<locals>._arg_max_or_min_sql>, <class 'sqlglot.expressions.aggregate.ArgMin'>: <function arg_max_or_min_no_count.<locals>._arg_max_or_min_sql>, <class 'sqlglot.expressions.array.Array'>: <function inline_array_sql>, <class 'sqlglot.expressions.string.CityHash64'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.functions.CastToStrType'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.functions.CurrentDatabase'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.functions.CurrentSchemas'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.aggregate.CountIf'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.math.CosineDistance'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.constraints.CompressColumnConstraint'>: <function ClickHouseGenerator.<lambda>>, <class 'sqlglot.expressions.constraints.ComputedColumnConstraint'>: <function ClickHouseGenerator.<lambda>>, <class 'sqlglot.expressions.temporal.CurrentDate'>: <function ClickHouseGenerator.<lambda>>, <class 'sqlglot.expressions.functions.CurrentVersion'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.temporal.DateAdd'>: <function _datetime_delta_sql.<locals>._delta_sql>, <class 'sqlglot.expressions.temporal.DateDiff'>: <function _datetime_delta_sql.<locals>._delta_sql>, <class 'sqlglot.expressions.temporal.DateStrToDate'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.temporal.DateSub'>: <function _datetime_delta_sql.<locals>._delta_sql>, <class 'sqlglot.expressions.array.Explode'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.string.FarmFingerprint'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.query.Final'>: <function ClickHouseGenerator.<lambda>>, <class 'sqlglot.expressions.math.IsNan'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.math.JarowinklerSimilarity'>: <function jarowinkler_similarity.<locals>.jarowinklersimilarity_sql>, <class 'sqlglot.expressions.functions.JSONCast'>: <function _json_cast_sql>, <class 'sqlglot.expressions.json.JSONExtract'>: <function json_extract_segments.<locals>._json_extract_segments>, <class 'sqlglot.expressions.json.JSONExtractScalar'>: <function json_extract_segments.<locals>._json_extract_segments>, <class 'sqlglot.expressions.string.Length'>: <function length_or_char_length_sql>, <class 'sqlglot.expressions.array.Map'>: <function _map_sql>, <class 'sqlglot.expressions.aggregate.Median'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.functions.Nullif'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.properties.PartitionedByProperty'>: <function ClickHouseGenerator.<lambda>>, <class 'sqlglot.expressions.query.Pivot'>: <function no_pivot_sql>, <class 'sqlglot.expressions.aggregate.Quantile'>: <function _quantile_sql>, <class 'sqlglot.expressions.core.RegexpLike'>: <function ClickHouseGenerator.<lambda>>, <class 'sqlglot.expressions.functions.Rand'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.string.StartsWith'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.array.Struct'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.math.Trunc'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.string.EndsWith'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.math.EuclideanDistance'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.string.StrPosition'>: <function ClickHouseGenerator.<lambda>>, <class 'sqlglot.expressions.temporal.TimeToStr'>: <function ClickHouseGenerator.<lambda>>, <class 'sqlglot.expressions.temporal.TimeStrToTime'>: <function _timestrtotime_sql>, <class 'sqlglot.expressions.temporal.TimestampAdd'>: <function _datetime_delta_sql.<locals>._delta_sql>, <class 'sqlglot.expressions.temporal.TimestampSub'>: <function _datetime_delta_sql.<locals>._delta_sql>, <class 'sqlglot.expressions.core.Typeof'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.core.Xor'>: <function ClickHouseGenerator.<lambda>>, <class 'sqlglot.expressions.string.MD5Digest'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.string.MD5'>: <function ClickHouseGenerator.<lambda>>, <class 'sqlglot.expressions.string.SHA'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.string.SHA1Digest'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.string.SHA2'>: <function sha256_sql>, <class 'sqlglot.expressions.string.SHA2Digest'>: <function sha2_digest_sql>, <class 'sqlglot.expressions.string.Split'>: <function ClickHouseGenerator.<lambda>>, <class 'sqlglot.expressions.string.RegexpSplit'>: <function ClickHouseGenerator.<lambda>>, <class 'sqlglot.expressions.temporal.UnixToTime'>: <function _unix_to_time_sql>, <class 'sqlglot.expressions.string.Trim'>: <function ClickHouseGenerator.<lambda>>, <class 'sqlglot.expressions.aggregate.Variance'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.properties.SchemaCommentProperty'>: <function ClickHouseGenerator.<lambda>>, <class 'sqlglot.expressions.aggregate.Stddev'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.string.Chr'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.aggregate.Lag'>: <function ClickHouseGenerator.<lambda>>, <class 'sqlglot.expressions.aggregate.Lead'>: <function ClickHouseGenerator.<lambda>>, <class 'sqlglot.expressions.string.Levenshtein'>: <function rename_func.<locals>.<lambda>>, <class 'sqlglot.expressions.temporal.ParseDatetime'>: <function ClickHouseGenerator.<lambda>>}
PROPERTIES_LOCATION = {<class 'sqlglot.expressions.properties.AllowedValuesProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.AlgorithmProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.ApiProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.ApplicationProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.AutoIncrementProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.AutoRefreshProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.BackupProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.BlockCompressionProperty'>: <PropertiesLocation.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.properties.CalledOnNullInputProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.CatalogProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.CharacterSetProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.ChecksumProperty'>: <PropertiesLocation.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.properties.CollateProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.ComputeProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.CopyGrantsProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.query.Cluster'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.ClusteredByProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.ClusterProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.DistributedByProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.DuplicateKeyProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.DataBlocksizeProperty'>: <PropertiesLocation.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.properties.DatabaseProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.DataDeletionProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.DefinerProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.DictRange'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.DictProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.DynamicProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.DistKeyProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.DistStyleProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.EmptyProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.EncodeProperty'>: <PropertiesLocation.POST_EXPRESSION: 'POST_EXPRESSION'>, <class 'sqlglot.expressions.properties.EngineProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.EnviromentProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.HandlerProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.ParameterStyleProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.ExecuteAsProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.ExternalProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.FallbackProperty'>: <PropertiesLocation.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.properties.FileFormatProperty'>: <PropertiesLocation.POST_WITH: 'POST_WITH'>, <class 'sqlglot.expressions.properties.FreespaceProperty'>: <PropertiesLocation.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.properties.GlobalProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.HeapProperty'>: <PropertiesLocation.POST_WITH: 'POST_WITH'>, <class 'sqlglot.expressions.properties.HybridProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.InheritsProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.IcebergProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.IncludeProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.InputModelProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.IsolatedLoadingProperty'>: <PropertiesLocation.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.properties.JournalProperty'>: <PropertiesLocation.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.properties.LanguageProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.LikeProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.LocationProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.LockProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.LockingProperty'>: <PropertiesLocation.POST_ALIAS: 'POST_ALIAS'>, <class 'sqlglot.expressions.properties.LogProperty'>: <PropertiesLocation.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.properties.MaskingProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.MaterializedProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.MergeBlockRatioProperty'>: <PropertiesLocation.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.properties.ModuleProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.NetworkProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.NoPrimaryIndexProperty'>: <PropertiesLocation.POST_EXPRESSION: 'POST_EXPRESSION'>, <class 'sqlglot.expressions.properties.OnProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.OnCommitProperty'>: <PropertiesLocation.POST_EXPRESSION: 'POST_EXPRESSION'>, <class 'sqlglot.expressions.query.Order'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.OutputModelProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.PartitionedByProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.PartitionedOfProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.constraints.PrimaryKey'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.Property'>: <PropertiesLocation.POST_WITH: 'POST_WITH'>, <class 'sqlglot.expressions.properties.RefreshTriggerProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.RemoteWithConnectionModelProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.ReturnsProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.RollupProperty'>: <PropertiesLocation.UNSUPPORTED: 'UNSUPPORTED'>, <class 'sqlglot.expressions.properties.RowAccessProperty'>: <PropertiesLocation.UNSUPPORTED: 'UNSUPPORTED'>, <class 'sqlglot.expressions.properties.RowFormatProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.RowFormatDelimitedProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.RowFormatSerdeProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.SampleProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.SchemaCommentProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.SecureProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.SecurityIntegrationProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.SerdeProperties'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.ddl.Set'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.SettingsProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.SetProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.SetConfigProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.SharingProperty'>: <PropertiesLocation.POST_EXPRESSION: 'POST_EXPRESSION'>, <class 'sqlglot.expressions.ddl.SequenceProperties'>: <PropertiesLocation.POST_EXPRESSION: 'POST_EXPRESSION'>, <class 'sqlglot.expressions.ddl.TriggerProperties'>: <PropertiesLocation.POST_EXPRESSION: 'POST_EXPRESSION'>, <class 'sqlglot.expressions.properties.SortKeyProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.SqlReadWriteProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.SqlSecurityProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.StabilityProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.StorageHandlerProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.StreamingTableProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.StrictProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.Tags'>: <PropertiesLocation.POST_WITH: 'POST_WITH'>, <class 'sqlglot.expressions.properties.TemporaryProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.ToTableProperty'>: <PropertiesLocation.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.properties.TransientProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.TransformModelProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.ddl.MergeTreeTTL'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.UnloggedProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.UsingProperty'>: <PropertiesLocation.POST_EXPRESSION: 'POST_EXPRESSION'>, <class 'sqlglot.expressions.properties.UsingTemplateProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.ViewAttributeProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.VirtualProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.VolatileProperty'>: <PropertiesLocation.UNSUPPORTED: 'UNSUPPORTED'>, <class 'sqlglot.expressions.properties.WithDataProperty'>: <PropertiesLocation.POST_EXPRESSION: 'POST_EXPRESSION'>, <class 'sqlglot.expressions.properties.WithJournalTableProperty'>: <PropertiesLocation.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.properties.WithProcedureOptions'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.WithSchemaBindingProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.WithSystemVersioningProperty'>: <PropertiesLocation.POST_SCHEMA: 'POST_SCHEMA'>, <class 'sqlglot.expressions.properties.ForceProperty'>: <PropertiesLocation.POST_CREATE: 'POST_CREATE'>, <class 'sqlglot.expressions.properties.OnCluster'>: <PropertiesLocation.POST_NAME: 'POST_NAME'>, <class 'sqlglot.expressions.properties.UuidProperty'>: <PropertiesLocation.POST_NAME: 'POST_NAME'>}
ON_CLUSTER_TARGETS = {'SCHEMA', 'DATABASE', 'TABLE', 'INDEX', 'FUNCTION', 'NAMED COLLECTION', 'DICTIONARY', 'VIEW'}
NON_NULLABLE_TYPES = {<DType.STRUCT: 'STRUCT'>, <DType.POLYGON: 'POLYGON'>, <DType.LINESTRING: 'LINESTRING'>, <DType.MULTIPOLYGON: 'MULTIPOLYGON'>, <DType.POINT: 'POINT'>, <DType.ARRAY: 'ARRAY'>, <DType.RING: 'RING'>, <DType.MAP: 'MAP'>, <DType.MULTILINESTRING: 'MULTILINESTRING'>}
def groupconcat_sql(self, expression: sqlglot.expressions.aggregate.GroupConcat) -> str:
423    def groupconcat_sql(self, expression: exp.GroupConcat) -> str:
424        this = expression.this
425        separator = expression.args.get("separator")
426
427        if isinstance(this, exp.Limit) and this.this:
428            limit = this
429            this = limit.this.pop()
430            return self.sql(
431                exp.ParameterizedAgg(
432                    this="groupConcat",
433                    params=[this],
434                    expressions=[separator, limit.expression],
435                )
436            )
437
438        if separator:
439            return self.sql(
440                exp.ParameterizedAgg(
441                    this="groupConcat",
442                    params=[this],
443                    expressions=[separator],
444                )
445            )
446
447        return self.func("groupConcat", this)
def offset_sql(self, expression: sqlglot.expressions.query.Offset) -> str:
449    def offset_sql(self, expression: exp.Offset) -> str:
450        offset = super().offset_sql(expression)
451
452        # OFFSET ... FETCH syntax requires a "ROW" or "ROWS" keyword
453        # https://clickhouse.com/docs/sql-reference/statements/select/offset
454        parent = expression.parent
455        if isinstance(parent, exp.Select) and isinstance(parent.args.get("limit"), exp.Fetch):
456            offset = f"{offset} ROWS"
457
458        return offset
def strtodate_sql(self, expression: sqlglot.expressions.temporal.StrToDate) -> str:
460    def strtodate_sql(self, expression: exp.StrToDate) -> str:
461        strtodate_sql = self.function_fallback_sql(expression)
462
463        if not isinstance(expression.parent, exp.Cast):
464            # StrToDate returns DATEs in other dialects (eg. postgres), so
465            # this branch aims to improve the transpilation to clickhouse
466            return self.cast_sql(exp.cast(expression, "DATE"))
467
468        return strtodate_sql
def cast_sql( self, expression: sqlglot.expressions.functions.Cast, safe_prefix: str | None = None) -> str:
470    def cast_sql(self, expression: exp.Cast, safe_prefix: str | None = None) -> str:
471        this = expression.this
472
473        if isinstance(this, exp.StrToDate) and expression.to == exp.DType.DATETIME.into_expr():
474            return self.sql(this)
475
476        return super().cast_sql(expression, safe_prefix=safe_prefix)
def trycast_sql(self, expression: sqlglot.expressions.functions.TryCast) -> str:
478    def trycast_sql(self, expression: exp.TryCast) -> str:
479        dtype = expression.to
480        if not dtype.is_type(*self.NON_NULLABLE_TYPES, check_nullable=True):
481            # Casting x into Nullable(T) appears to behave similarly to TRY_CAST(x AS T)
482            dtype.set("nullable", True)
483
484        return super().cast_sql(expression)
def likeproperty_sql(self, expression: sqlglot.expressions.properties.LikeProperty) -> str:
490    def likeproperty_sql(self, expression: exp.LikeProperty) -> str:
491        return f"AS {self.sql(expression, 'this')}"
def eq_sql(self, expression: sqlglot.expressions.core.EQ) -> str:
510    def eq_sql(self, expression: exp.EQ) -> str:
511        return self._any_to_has(expression, super().eq_sql)
def neq_sql(self, expression: sqlglot.expressions.core.NEQ) -> str:
513    def neq_sql(self, expression: exp.NEQ) -> str:
514        return self._any_to_has(expression, super().neq_sql, "NOT ")
def regexpilike_sql(self, expression: sqlglot.expressions.string.RegexpILike) -> str:
516    def regexpilike_sql(self, expression: exp.RegexpILike) -> str:
517        # Manually add a flag to make the search case-insensitive
518        regex = self.func("CONCAT", "'(?i)'", expression.expression)
519        return self.func("match", expression.this, regex)
def datatype_sql(self, expression: sqlglot.expressions.datatypes.DataType) -> str:
521    def datatype_sql(self, expression: exp.DataType) -> str:
522        # String is the standard ClickHouse type, every other variant is just an alias.
523        # Additionally, any supplied length parameter will be ignored.
524        #
525        # https://clickhouse.com/docs/en/sql-reference/data-types/string
526        if expression.this in self.STRING_TYPE_MAPPING:
527            dtype = "String"
528        else:
529            dtype = super().datatype_sql(expression)
530
531        # This section changes the type to `Nullable(...)` if the following conditions hold:
532        # - It's marked as nullable - this ensures we won't wrap ClickHouse types with `Nullable`
533        #   and change their semantics
534        # - It's not the key type of a `Map`. This is because ClickHouse enforces the following
535        #   constraint: "Type of Map key must be a type, that can be represented by integer or
536        #   String or FixedString (possibly LowCardinality) or UUID or IPv6"
537        # - It's not a composite type, e.g. `Nullable(Array(...))` is not a valid type
538        parent = expression.parent
539        nullable = expression.args.get("nullable")
540        if nullable is True or (
541            nullable is None
542            and not (
543                isinstance(parent, exp.DataType)
544                and parent.is_type(exp.DType.MAP, check_nullable=True)
545                and expression.index in (None, 0)
546            )
547            and not expression.is_type(*self.NON_NULLABLE_TYPES, check_nullable=True)
548        ):
549            dtype = f"Nullable({dtype})"
550
551        return dtype
def cte_sql(self, expression: sqlglot.expressions.query.CTE) -> str:
553    def cte_sql(self, expression: exp.CTE) -> str:
554        if expression.args.get("scalar"):
555            this = self.sql(expression, "this")
556            alias = self.sql(expression, "alias")
557            return f"{this} AS {alias}"
558
559        return super().cte_sql(expression)
def after_limit_modifiers(self, expression: sqlglot.expressions.core.Expr) -> list[str]:
561    def after_limit_modifiers(self, expression: exp.Expr) -> list[str]:
562        return super().after_limit_modifiers(expression) + [
563            (
564                self.seg("SETTINGS ") + self.expressions(expression, key="settings", flat=True)
565                if expression.args.get("settings")
566                else ""
567            ),
568            (
569                self.seg("FORMAT ") + self.sql(expression, "format")
570                if expression.args.get("format")
571                else ""
572            ),
573        ]
def placeholder_sql(self, expression: sqlglot.expressions.core.Placeholder) -> str:
575    def placeholder_sql(self, expression: exp.Placeholder) -> str:
576        return f"{{{expression.name}: {self.sql(expression, 'kind')}}}"
def oncluster_sql(self, expression: sqlglot.expressions.properties.OnCluster) -> str:
578    def oncluster_sql(self, expression: exp.OnCluster) -> str:
579        return f"ON CLUSTER {self.sql(expression, 'this')}"
def createable_sql( self, expression: sqlglot.expressions.ddl.Create, locations: collections.defaultdict) -> str:
581    def createable_sql(self, expression: exp.Create, locations: defaultdict) -> str:
582        if expression.kind in self.ON_CLUSTER_TARGETS and locations.get(
583            exp.Properties.Location.POST_NAME
584        ):
585            this_name = self.sql(
586                expression.this if isinstance(expression.this, exp.Schema) else expression,
587                "this",
588            )
589            this_properties = " ".join(
590                [self.sql(prop) for prop in locations[exp.Properties.Location.POST_NAME]]
591            )
592            this_schema = self.schema_columns_sql(expression.this)
593            this_schema = f"{self.sep()}{this_schema}" if this_schema else ""
594
595            return f"{this_name}{self.sep()}{this_properties}{this_schema}"
596
597        return super().createable_sql(expression, locations)
def create_sql(self, expression: sqlglot.expressions.ddl.Create) -> str:
599    def create_sql(self, expression: exp.Create) -> str:
600        # The comment property comes last in CTAS statements, i.e. after the query
601        query = expression.expression
602        if isinstance(query, exp.Query):
603            comment_prop = expression.find(exp.SchemaCommentProperty)
604            if comment_prop:
605                comment_prop.pop()
606                query.replace(exp.paren(query))
607        else:
608            comment_prop = None
609
610        create_sql = super().create_sql(expression)
611
612        comment_sql = self.sql(comment_prop)
613        comment_sql = f" {comment_sql}" if comment_sql else ""
614
615        return f"{create_sql}{comment_sql}"
def prewhere_sql(self, expression: sqlglot.expressions.query.PreWhere) -> str:
617    def prewhere_sql(self, expression: exp.PreWhere) -> str:
618        this = self.indent(self.sql(expression, "this"))
619        return f"{self.seg('PREWHERE')}{self.sep()}{this}"
def indexcolumnconstraint_sql( self, expression: sqlglot.expressions.constraints.IndexColumnConstraint) -> str:
621    def indexcolumnconstraint_sql(self, expression: exp.IndexColumnConstraint) -> str:
622        this = self.sql(expression, "this")
623        this = f" {this}" if this else ""
624        expr = self.sql(expression, "expression")
625        expr = f" {expr}" if expr else ""
626        index_type = self.sql(expression, "index_type")
627        index_type = f" TYPE {index_type}" if index_type else ""
628        granularity = self.sql(expression, "granularity")
629        granularity = f" GRANULARITY {granularity}" if granularity else ""
630
631        return f"INDEX{this}{expr}{index_type}{granularity}"
def partition_sql(self, expression: sqlglot.expressions.query.Partition) -> str:
633    def partition_sql(self, expression: exp.Partition) -> str:
634        return f"PARTITION {self.expressions(expression, flat=True)}"
def partitionid_sql(self, expression: sqlglot.expressions.query.PartitionId) -> str:
636    def partitionid_sql(self, expression: exp.PartitionId) -> str:
637        return f"ID {self.sql(expression.this)}"
def replacepartition_sql(self, expression: sqlglot.expressions.query.ReplacePartition) -> str:
639    def replacepartition_sql(self, expression: exp.ReplacePartition) -> str:
640        return f"REPLACE {self.sql(expression.expression)} FROM {self.sql(expression, 'source')}"
def projectiondef_sql(self, expression: sqlglot.expressions.query.ProjectionDef) -> str:
642    def projectiondef_sql(self, expression: exp.ProjectionDef) -> str:
643        return f"PROJECTION {self.sql(expression.this)} {self.wrap(expression.expression)}"
def nestedjsonselect_sql(self, expression: sqlglot.expressions.core.NestedJSONSelect) -> str:
645    def nestedjsonselect_sql(self, expression: exp.NestedJSONSelect) -> str:
646        return f"{self.sql(expression, 'this')}.^{self.sql(expression, 'expression')}"
def is_sql(self, expression: sqlglot.expressions.core.Is) -> str:
648    def is_sql(self, expression: exp.Is) -> str:
649        is_sql = super().is_sql(expression)
650
651        if isinstance(expression.parent, exp.Not):
652            # value IS NOT NULL -> NOT (value IS NULL)
653            is_sql = self.wrap(is_sql)
654
655        return is_sql
def in_sql(self, expression: sqlglot.expressions.core.In) -> str:
657    def in_sql(self, expression: exp.In) -> str:
658        in_sql = super().in_sql(expression)
659
660        if isinstance(expression.parent, exp.Not) and expression.args.get("is_global"):
661            in_sql = in_sql.replace("GLOBAL IN", "GLOBAL NOT IN", 1)
662
663        return in_sql
def not_sql(self, expression: sqlglot.expressions.core.Not) -> str:
665    def not_sql(self, expression: exp.Not) -> str:
666        if isinstance(expression.this, exp.In):
667            if expression.this.args.get("is_global"):
668                # let `GLOBAL IN` child interpose `NOT`
669                return self.sql(expression, "this")
670
671            expression.set("this", exp.paren(expression.this, copy=False))
672
673        return super().not_sql(expression)
def values_sql( self, expression: sqlglot.expressions.query.Values, values_as_table: bool = True) -> str:
675    def values_sql(self, expression: exp.Values, values_as_table: bool = True) -> str:
676        # If the VALUES clause contains tuples of expressions, we need to treat it
677        # as a table since Clickhouse will automatically alias it as such.
678        alias = expression.args.get("alias")
679
680        if alias and alias.args.get("columns") and expression.expressions:
681            values = expression.expressions[0].expressions
682            values_as_table = any(isinstance(value, exp.Tuple) for value in values)
683        else:
684            values_as_table = True
685
686        return super().values_sql(expression, values_as_table=values_as_table)
def timestamptrunc_sql( self, expression: sqlglot.expressions.temporal.DateTrunc | sqlglot.expressions.temporal.TimestampTrunc) -> str:
688    def timestamptrunc_sql(self, expression: exp.DateTrunc | exp.TimestampTrunc) -> str:
689        unit = unit_to_str(expression)
690        # https://clickhouse.com/docs/whats-new/changelog/2023#improvement
691        if self.dialect.version < (23, 12) and unit and unit.is_string:
692            unit = exp.Literal.string(unit.name.lower())
693        return self.func("dateTrunc", unit, expression.this, expression.args.get("zone"))
def datetrunc_sql(self, expression: sqlglot.expressions.temporal.DateTrunc) -> str:
695    def datetrunc_sql(self, expression: exp.DateTrunc) -> str:
696        return self.timestamptrunc_sql(expression)
Inherited Members
sqlglot.generator.Generator
Generator
NULL_ORDERING_SUPPORTED
WINDOW_FUNCS_WITH_NULL_ORDERING
IGNORE_NULLS_IN_FUNC
IGNORE_NULLS_BEFORE_ORDER
LOCKING_READS_SUPPORTED
EXCEPT_INTERSECT_SUPPORT_ALL_CLAUSE
CREATE_FUNCTION_RETURN_AS
MATCHED_BY_SOURCE
SUPPORTS_MERGE_WHERE
SINGLE_STRING_INTERVAL
INTERVAL_ALLOWS_PLURAL_FORM
LIMIT_FETCH
LIMIT_ONLY_LITERALS
RENAME_TABLE_WITH_DB
INDEX_ON
INOUT_SEPARATOR
DIRECTED_JOINS
QUERY_HINT_SEP
IS_BOOL_ALLOWED
DUPLICATE_KEY_UPDATE_WITH_SET
LIMIT_IS_TOP
RETURNING_END
EXTRACT_ALLOWS_QUOTES
TZ_TO_WITH_TIME_ZONE
VALUES_AS_TABLE
ALTER_TABLE_INCLUDE_COLUMN_KEYWORD
UNNEST_WITH_ORDINALITY
AGGREGATE_FILTER_SUPPORTED
SEMI_ANTI_JOIN_WITH_SIDE
COMPUTED_COLUMN_WITH_TYPE
SUPPORTS_TABLE_COPY
TABLESAMPLE_WITH_METHOD
TABLESAMPLE_SEED_KEYWORD
COLLATE_IS_FUNC
DATA_TYPE_SPECIFIERS_ALLOWED
ENSURE_BOOLS
CTE_RECURSIVE_KEYWORD_REQUIRED
SUPPORTS_SINGLE_ARG_CONCAT
SUPPORTS_TABLE_ALIAS_COLUMNS
SUPPORTS_NAMED_CTE_COLUMNS
UNPIVOT_ALIASES_ARE_IDENTIFIERS
JSON_KEY_VALUE_PAIR_SEP
INSERT_OVERWRITE
SUPPORTS_SELECT_INTO
SUPPORTS_UNLOGGED_TABLES
SUPPORTS_CREATE_TABLE_LIKE
SUPPORTS_MODIFY_COLUMN
SUPPORTS_CHANGE_COLUMN
LIKE_PROPERTY_INSIDE_SCHEMA
MULTI_ARG_DISTINCT
JSON_TYPE_REQUIRED_FOR_EXTRACTION
JSON_PATH_BRACKETED_KEY_SUPPORTED
JSON_PATH_SINGLE_QUOTE_ESCAPE
JSON_PATH_KEY_QUOTED_FORCES_BRACKETS
SUPPORTS_WINDOW_EXCLUDE
COPY_PARAMS_ARE_WRAPPED
COPY_PARAMS_EQ_REQUIRED
COPY_HAS_INTO_KEYWORD
UNICODE_SUBSTITUTE
STAR_EXCEPT
HEX_FUNC
WITH_PROPERTIES_PREFIX
QUOTE_JSON_PATH
PAD_FILL_PATTERN_IS_REQUIRED
SUPPORTS_EXPLODING_PROJECTIONS
ARRAY_CONCAT_IS_VAR_LEN
SUPPORTS_CONVERT_TIMEZONE
SUPPORTS_MEDIAN
SUPPORTS_UNIX_SECONDS
ALTER_SET_WRAPPED
NORMALIZE_EXTRACT_DATE_PARTS
PARSE_JSON_NAME
ALTER_SET_TYPE
ARRAY_SIZE_DIM_REQUIRED
SUPPORTS_BETWEEN_FLAGS
SUPPORTS_LIKE_QUANTIFIERS
MATCH_AGAINST_TABLE_PREFIX
SET_ASSIGNMENT_REQUIRES_VARIABLE_KEYWORD
DECLARE_DEFAULT_ASSIGNMENT
UPDATE_STATEMENT_SUPPORTS_FROM
STAR_EXCLUDE_REQUIRES_DERIVED_TABLE
SUPPORTS_DROP_ALTER_ICEBERG_PROPERTY
UNSUPPORTED_TYPES
TYPE_PARAM_SETTINGS
TIME_PART_SINGULARS
TOKEN_MAPPING
PARAMETER_TOKEN
NAMED_PLACEHOLDER_TOKEN
EXPRESSION_PRECEDES_PROPERTIES_CREATABLES
RESERVED_KEYWORDS
WITH_SEPARATED_COMMENTS
EXCLUDE_COMMENTS
UNWRAPPED_INTERVAL_VALUES
PARAMETERIZABLE_TEXT_TYPES
EXPRESSIONS_WITHOUT_NESTED_CTES
RESPECT_IGNORE_NULLS_UNSUPPORTED_EXPRESSIONS
SAFE_JSON_PATH_KEY_RE
SENTINEL_LINE_BREAK
pretty
identify
normalize
pad
unsupported_level
max_unsupported
leading_comma
max_text_width
comments
dialect
normalize_functions
unsupported_messages
generate
preprocess
unsupported
sep
seg
sanitize_comment
maybe_comment
wrap
no_identify
normalize_func
indent
sql
uncache_sql
cache_sql
characterset_sql
column_parts
column_sql
pseudocolumn_sql
columnposition_sql
columndef_sql
columnconstraint_sql
computedcolumnconstraint_sql
autoincrementcolumnconstraint_sql
compresscolumnconstraint_sql
generatedasidentitycolumnconstraint_sql
generatedasrowcolumnconstraint_sql
periodforsystemtimeconstraint_sql
notnullcolumnconstraint_sql
primarykeycolumnconstraint_sql
uniquecolumnconstraint_sql
inoutcolumnconstraint_sql
sequenceproperties_sql
triggerproperties_sql
triggerreferencing_sql
triggerevent_sql
clone_sql
describe_sql
heredoc_sql
prepend_ctes
with_sql
tablealias_sql
bitstring_sql
hexstring_sql
bytestring_sql
unicodestring_sql
rawstring_sql
datatypeparam_sql
datatype_param_bound_limiter
directory_sql
delete_sql
drop_sql
set_operation
set_operations
fetch_sql
limitoptions_sql
filter_sql
hint_sql
indexparameters_sql
index_sql
dynamicidentifier_sql
identifier_sql
hex_sql
lowerhex_sql
inputoutputformat_sql
national_sql
properties_sql
root_properties
properties
with_properties
locate_properties
property_name
property_sql
uuidproperty_sql
fallbackproperty_sql
journalproperty_sql
freespaceproperty_sql
checksumproperty_sql
mergeblockratioproperty_sql
moduleproperty_sql
datablocksizeproperty_sql
blockcompressionproperty_sql
isolatedloadingproperty_sql
partitionboundspec_sql
partitionedofproperty_sql
lockingproperty_sql
withdataproperty_sql
withsystemversioningproperty_sql
insert_sql
introducer_sql
kill_sql
pseudotype_sql
objectidentifier_sql
onconflict_sql
returning_sql
rowformatdelimitedproperty_sql
withtablehint_sql
indextablehint_sql
historicaldata_sql
table_parts
table_sql
tablefromrows_sql
tablesample_sql
pivot_sql
version_sql
tuple_sql
update_sql
var_sql
into_sql
from_sql
groupingsets_sql
rollup_sql
rollupindex_sql
rollupproperty_sql
cube_sql
group_sql
having_sql
connect_sql
prior_sql
join_sql
lambda_sql
lateral_op
lateral_sql
limit_sql
setitem_sql
set_sql
queryband_sql
pragma_sql
lock_sql
literal_sql
escape_str
loaddata_sql
null_sql
boolean_sql
booland_sql
boolor_sql
order_sql
withfill_sql
cluster_sql
clusterproperty_sql
distribute_sql
sort_sql
ordered_sql
matchrecognizemeasure_sql
matchrecognize_sql
query_modifiers
options_modifier
forclause_sql
queryoption_sql
offset_limit_modifiers
select_sql
schema_sql
schema_columns_sql
star_sql
parameter_sql
sessionparameter_sql
subquery_sql
qualify_sql
unnest_sql
where_sql
window_sql
partition_by_sql
windowspec_sql
withingroup_sql
between_sql
bracket_offset_expressions
bracket_sql
all_sql
any_sql
exists_sql
case_sql
constraint_sql
nextvaluefor_sql
extract_sql
trim_sql
convert_concat_args
concat_sql
concatws_sql
check_sql
foreignkey_sql
primarykey_sql
if_sql
matchagainst_sql
jsonkeyvalue_sql
jsonpath_sql
json_path_part
formatjson_sql
formatphrase_sql
jsonarray_sql
jsonarrayagg_sql
jsoncolumndef_sql
jsonschema_sql
jsontable_sql
openjsoncolumndef_sql
openjson_sql
in_unnest_op
interval_sql
return_sql
reference_sql
anonymous_sql
paren_sql
neg_sql
alias_sql
pivotalias_sql
aliases_sql
atindex_sql
attimezone_sql
fromtimezone_sql
fromiso8601date_sql
fromiso8601timestamp_sql
add_sql
and_sql
or_sql
xor_sql
connector_sql
bitwiseand_sql
bitwiseleftshift_sql
bitwisenot_sql
bitwiseor_sql
bitwiserightshift_sql
bitwisexor_sql
strtotime_sql
parsedatetime_sql
currentdate_sql
collate_sql
command_sql
comment_sql
mergetreettlaction_sql
mergetreettl_sql
transaction_sql
commit_sql
rollback_sql
altercolumn_sql
modifycolumn_sql
alterindex_sql
alterdiststyle_sql
altersortkey_sql
alterrename_sql
renamecolumn_sql
alterset_sql
alter_sql
altersession_sql
add_column_sql
droppartition_sql
dropprimarykey_sql
addconstraint_sql
addpartition_sql
distinct_sql
ignorenulls_sql
respectnulls_sql
havingmax_sql
intdiv_sql
dpipe_sql
div_sql
safedivide_sql
overlaps_sql
distance_sql
distancend_sql
dot_sql
propertyeq_sql
escape_sql
glob_sql
gt_sql
gte_sql
like_sql
ilike_sql
match_sql
similarto_sql
lt_sql
lte_sql
mod_sql
mul_sql
nullsafeeq_sql
nullsafeneq_sql
sub_sql
jsoncast_sql
try_sql
log_sql
use_sql
binary
ceil_floor
function_fallback_sql
func
format_args
too_wide
format_time
expressions
op_expressions
naked_property
tag_sql
token_sql
userdefinedfunction_sql
macrooverloads_sql
macrooverload_sql
joinhint_sql
kwarg_sql
when_sql
whens_sql
merge_sql
tochar_sql
tonumber_sql
dictproperty_sql
dictrange_sql
dictsubproperty_sql
duplicatekeyproperty_sql
uniquekeyproperty_sql
distributedbyproperty_sql
clusteredbyproperty_sql
anyvalue_sql
querytransform_sql
indexconstraintoption_sql
checkcolumnconstraint_sql
nvl2_sql
comprehension_sql
columnprefix_sql
opclass_sql
predict_sql
generateembedding_sql
generatetext_sql
generatetable_sql
generatebool_sql
generateint_sql
generatedouble_sql
mltranslate_sql
mlforecast_sql
aiforecast_sql
featuresattime_sql
vectorsearch_sql
forin_sql
refresh_sql
toarray_sql
tsordstotime_sql
tsordstotimestamp_sql
tsordstodatetime_sql
tsordstodate_sql
unixdate_sql
lastday_sql
dateadd_sql
arrayany_sql
struct_sql
partitionrange_sql
truncatetable_sql
convert_sql
copyparameter_sql
credentials_sql
copy_sql
semicolon_sql
datadeletionproperty_sql
maskingpolicycolumnconstraint_sql
gapfill_sql
scope_resolution
scoperesolution_sql
parsejson_sql
rand_sql
changes_sql
pad_sql
summarize_sql
explodinggenerateseries_sql
converttimezone_sql
json_sql
jsonvalue_sql
skipjsoncolumn_sql
conditionalinsert_sql
multitableinserts_sql
oncondition_sql
jsonextractquote_sql
jsonexists_sql
arrayagg_sql
slice_sql
apply_sql
grant_sql
revoke_sql
grantprivilege_sql
grantprincipal_sql
columns_sql
overlay_sql
todouble_sql
string_sql
median_sql
overflowtruncatebehavior_sql
unixseconds_sql
arraysize_sql
attach_sql
detach_sql
attachoption_sql
watermarkcolumnconstraint_sql
encodeproperty_sql
includeproperty_sql
xmlelement_sql
xmlkeyvalueoption_sql
partitionbyrangeproperty_sql
partitionbyrangepropertydynamic_sql
unpivotcolumns_sql
analyzesample_sql
analyzestatistics_sql
analyzehistogram_sql
analyzedelete_sql
analyzelistchainedrows_sql
analyzevalidate_sql
analyze_sql
xmltable_sql
xmlnamespace_sql
export_sql
declare_sql
declareitem_sql
recursivewithsearch_sql
parameterizedagg_sql
anonymousaggfunc_sql
combinedaggfunc_sql
combinedparameterizedagg_sql
show_sql
install_sql
get_put_sql
translatecharacters_sql
decodecase_sql
semanticview_sql
getextract_sql
datefromunixdate_sql
space_sql
buildproperty_sql
refreshtriggerproperty_sql
modelattribute_sql
directorystage_sql
uuid_sql
initcap_sql
localtime_sql
localtimestamp_sql
weekstart_sql
chr_sql
block_sql
storedprocedure_sql
ifblock_sql
whileblock_sql
execute_sql
executesql_sql
altermodifysqlsecurity_sql
usingproperty_sql
renameindex_sql