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    weekstart_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    ALTER_SET_TYPE = "TYPE"
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    AUTO_REFRESH_BARE_INTERVALS = True
191
192    STRING_TYPE_MAPPING: t.ClassVar = {
193        exp.DType.BLOB: "String",
194        exp.DType.CHAR: "String",
195        exp.DType.LONGBLOB: "String",
196        exp.DType.LONGTEXT: "String",
197        exp.DType.MEDIUMBLOB: "String",
198        exp.DType.MEDIUMTEXT: "String",
199        exp.DType.TINYBLOB: "String",
200        exp.DType.TINYTEXT: "String",
201        exp.DType.TEXT: "String",
202        exp.DType.VARBINARY: "String",
203        exp.DType.VARCHAR: "String",
204    }
205
206    SUPPORTED_JSON_PATH_PARTS = {
207        exp.JSONPathKey,
208        exp.JSONPathRoot,
209        exp.JSONPathSubscript,
210    }
211
212    TYPE_MAPPING = {
213        **generator.Generator.TYPE_MAPPING,
214        exp.DType.BLOB: "String",
215        exp.DType.CHAR: "String",
216        exp.DType.LONGBLOB: "String",
217        exp.DType.LONGTEXT: "String",
218        exp.DType.MEDIUMBLOB: "String",
219        exp.DType.MEDIUMTEXT: "String",
220        exp.DType.TINYBLOB: "String",
221        exp.DType.TINYTEXT: "String",
222        exp.DType.TEXT: "String",
223        exp.DType.VARBINARY: "String",
224        exp.DType.VARCHAR: "String",
225        exp.DType.ARRAY: "Array",
226        exp.DType.BOOLEAN: "Bool",
227        exp.DType.BIGINT: "Int64",
228        exp.DType.DATE32: "Date32",
229        exp.DType.DATETIME: "DateTime",
230        exp.DType.DATETIME2: "DateTime",
231        exp.DType.SMALLDATETIME: "DateTime",
232        exp.DType.DATETIME64: "DateTime64",
233        exp.DType.DECIMAL: "Decimal",
234        exp.DType.DECIMAL32: "Decimal32",
235        exp.DType.DECIMAL64: "Decimal64",
236        exp.DType.DECIMAL128: "Decimal128",
237        exp.DType.DECIMAL256: "Decimal256",
238        exp.DType.TIMESTAMP: "DateTime",
239        exp.DType.TIMESTAMPNTZ: "DateTime",
240        exp.DType.TIMESTAMPTZ: "DateTime",
241        exp.DType.DOUBLE: "Float64",
242        exp.DType.ENUM: "Enum",
243        exp.DType.ENUM8: "Enum8",
244        exp.DType.ENUM16: "Enum16",
245        exp.DType.FIXEDSTRING: "FixedString",
246        exp.DType.FLOAT: "Float32",
247        exp.DType.INT: "Int32",
248        exp.DType.MEDIUMINT: "Int32",
249        exp.DType.INT128: "Int128",
250        exp.DType.INT256: "Int256",
251        exp.DType.LOWCARDINALITY: "LowCardinality",
252        exp.DType.MAP: "Map",
253        exp.DType.NESTED: "Nested",
254        exp.DType.NOTHING: "Nothing",
255        exp.DType.SMALLINT: "Int16",
256        exp.DType.STRUCT: "Tuple",
257        exp.DType.TINYINT: "Int8",
258        exp.DType.UBIGINT: "UInt64",
259        exp.DType.UINT: "UInt32",
260        exp.DType.UINT128: "UInt128",
261        exp.DType.UINT256: "UInt256",
262        exp.DType.USMALLINT: "UInt16",
263        exp.DType.UTINYINT: "UInt8",
264        exp.DType.IPV4: "IPv4",
265        exp.DType.IPV6: "IPv6",
266        exp.DType.POINT: "Point",
267        exp.DType.RING: "Ring",
268        exp.DType.LINESTRING: "LineString",
269        exp.DType.MULTILINESTRING: "MultiLineString",
270        exp.DType.POLYGON: "Polygon",
271        exp.DType.MULTIPOLYGON: "MultiPolygon",
272        exp.DType.AGGREGATEFUNCTION: "AggregateFunction",
273        exp.DType.SIMPLEAGGREGATEFUNCTION: "SimpleAggregateFunction",
274        exp.DType.DYNAMIC: "Dynamic",
275    }
276
277    TRANSFORMS = {
278        **{k: v for k, v in generator.Generator.TRANSFORMS.items() if k != exp.AutoRefreshProperty},
279        exp.AnyValue: rename_func("any"),
280        exp.ApproxDistinct: rename_func("uniq"),
281        exp.ArrayDistinct: rename_func("arrayDistinct"),
282        exp.ArrayConcat: rename_func("arrayConcat"),
283        exp.ArrayContains: rename_func("has"),
284        exp.ArrayFilter: lambda self, e: self.func("arrayFilter", e.expression, e.this),
285        exp.Transform: lambda self, e: self.func("arrayMap", e.expression, e.this),
286        exp.ArrayRemove: remove_from_array_using_filter,
287        exp.ArrayReverse: rename_func("arrayReverse"),
288        exp.ArraySlice: rename_func("arraySlice"),
289        exp.ArraySum: rename_func("arraySum"),
290        exp.ArrayMax: rename_func("arrayMax"),
291        exp.ArrayMin: rename_func("arrayMin"),
292        exp.ArgMax: arg_max_or_min_no_count("argMax"),
293        exp.ArgMin: arg_max_or_min_no_count("argMin"),
294        exp.Array: inline_array_sql,
295        exp.CityHash64: rename_func("cityHash64"),
296        exp.CastToStrType: rename_func("CAST"),
297        exp.CurrentDatabase: rename_func("CURRENT_DATABASE"),
298        exp.CurrentSchemas: rename_func("CURRENT_SCHEMAS"),
299        exp.CountIf: rename_func("countIf"),
300        exp.CosineDistance: rename_func("cosineDistance"),
301        exp.CompressColumnConstraint: lambda self, e: (
302            f"CODEC({self.expressions(e, key='this', flat=True)})"
303        ),
304        exp.ComputedColumnConstraint: lambda self, e: (
305            f"{'MATERIALIZED' if e.args.get('persisted') else 'ALIAS'} {self.sql(e, 'this')}"
306        ),
307        exp.CurrentDate: lambda self, e: self.func("CURRENT_DATE"),
308        exp.CurrentVersion: rename_func("VERSION"),
309        exp.DateAdd: _datetime_delta_sql("DATE_ADD"),
310        exp.DateDiff: _datetime_delta_sql("DATE_DIFF"),
311        exp.DateStrToDate: rename_func("toDate"),
312        exp.DateSub: _datetime_delta_sql("DATE_SUB"),
313        exp.Explode: rename_func("arrayJoin"),
314        exp.FarmFingerprint: rename_func("farmFingerprint64"),
315        exp.Final: lambda self, e: f"{self.sql(e, 'this')} FINAL",
316        exp.IsNan: rename_func("isNaN"),
317        exp.JarowinklerSimilarity: jarowinkler_similarity("jaroWinklerSimilarity"),
318        exp.JSONCast: _json_cast_sql,
319        exp.JSONExtract: json_extract_segments("JSONExtractString", quoted_index=False),
320        exp.JSONExtractScalar: json_extract_segments("JSONExtractString", quoted_index=False),
321        exp.JSONPathKey: json_path_key_only_name,
322        exp.JSONPathRoot: lambda *_: "",
323        exp.Length: length_or_char_length_sql,
324        exp.Map: _map_sql,
325        exp.Median: rename_func("median"),
326        exp.Nullif: rename_func("nullIf"),
327        exp.PartitionedByProperty: lambda self, e: f"PARTITION BY {self.sql(e, 'this')}",
328        exp.Pivot: no_pivot_sql,
329        exp.Quantile: _quantile_sql,
330        exp.RegexpLike: lambda self, e: self.func("match", e.this, e.expression),
331        exp.Rand: rename_func("randCanonical"),
332        exp.StartsWith: rename_func("startsWith"),
333        exp.Struct: rename_func("tuple"),
334        exp.Trunc: rename_func("trunc"),
335        exp.EndsWith: rename_func("endsWith"),
336        exp.EuclideanDistance: rename_func("L2Distance"),
337        exp.StrPosition: lambda self, e: strposition_sql(
338            self,
339            e,
340            func_name="POSITION",
341            supports_position=True,
342            use_ansi_position=False,
343        ),
344        exp.TimeToStr: lambda self, e: self.func(
345            "formatDateTime",
346            e.this.this if isinstance(e.this, exp.TsOrDsToTimestamp) else e.this,
347            self.format_time(e),
348            e.args.get("zone"),
349        ),
350        exp.TimeStrToTime: _timestrtotime_sql,
351        exp.TimestampAdd: _datetime_delta_sql("TIMESTAMP_ADD"),
352        exp.TimestampSub: _datetime_delta_sql("TIMESTAMP_SUB"),
353        exp.Typeof: rename_func("toTypeName"),
354        exp.VarMap: _map_sql,
355        exp.Xor: lambda self, e: self.func("xor", e.this, e.expression),
356        exp.MD5Digest: rename_func("MD5"),
357        exp.MD5: lambda self, e: self.func("LOWER", self.func("HEX", self.func("MD5", e.this))),
358        exp.SHA: rename_func("SHA1"),
359        exp.SHA1Digest: rename_func("SHA1"),
360        exp.SHA2: sha256_sql,
361        exp.SHA2Digest: sha2_digest_sql,
362        exp.Split: lambda self, e: self.func(
363            "splitByString", e.args.get("expression"), e.this, e.args.get("limit")
364        ),
365        exp.RegexpSplit: lambda self, e: self.func(
366            "splitByRegexp", e.args.get("expression"), e.this, e.args.get("limit")
367        ),
368        exp.UnixToTime: _unix_to_time_sql,
369        exp.Trim: lambda self, e: trim_sql(self, e, default_trim_type="BOTH"),
370        exp.Variance: rename_func("varSamp"),
371        exp.SchemaCommentProperty: lambda self, e: self.naked_property(e),
372        exp.Stddev: rename_func("stddevSamp"),
373        exp.Chr: rename_func("CHAR"),
374        exp.Lag: lambda self, e: self.func(
375            "lagInFrame", e.this, e.args.get("offset"), e.args.get("default")
376        ),
377        exp.Lead: lambda self, e: self.func(
378            "leadInFrame", e.this, e.args.get("offset"), e.args.get("default")
379        ),
380        exp.Levenshtein: unsupported_args("ins_cost", "del_cost", "sub_cost", "max_dist")(
381            rename_func("editDistance")
382        ),
383        exp.ParseDatetime: lambda self, e: self.func(
384            "parseDateTime", e.this, e.args.get("format"), e.args.get("zone")
385        ),
386    }
387
388    PROPERTIES_LOCATION = {
389        **generator.Generator.PROPERTIES_LOCATION,
390        exp.AutoRefreshProperty: exp.Properties.Location.POST_NAME,
391        exp.DefinerProperty: exp.Properties.Location.POST_SCHEMA,
392        exp.OnCluster: exp.Properties.Location.POST_NAME,
393        exp.PartitionedByProperty: exp.Properties.Location.POST_SCHEMA,
394        exp.ToTableProperty: exp.Properties.Location.POST_NAME,
395        exp.UuidProperty: exp.Properties.Location.POST_NAME,
396        exp.VolatileProperty: exp.Properties.Location.UNSUPPORTED,
397    }
398
399    # There's no list in docs, but it can be found in Clickhouse code
400    # see `ClickHouse/src/Parsers/ParserCreate*.cpp`
401    ON_CLUSTER_TARGETS = {
402        "SCHEMA",  # Transpiled CREATE SCHEMA may have OnCluster property set
403        "DATABASE",
404        "TABLE",
405        "VIEW",
406        "DICTIONARY",
407        "INDEX",
408        "FUNCTION",
409        "NAMED COLLECTION",
410    }
411
412    # https://clickhouse.com/docs/en/sql-reference/data-types/nullable
413    NON_NULLABLE_TYPES = {
414        exp.DType.ARRAY,
415        exp.DType.MAP,
416        exp.DType.STRUCT,
417        exp.DType.POINT,
418        exp.DType.RING,
419        exp.DType.LINESTRING,
420        exp.DType.MULTILINESTRING,
421        exp.DType.POLYGON,
422        exp.DType.MULTIPOLYGON,
423    }
424
425    def groupconcat_sql(self, expression: exp.GroupConcat) -> str:
426        this = expression.this
427        separator = expression.args.get("separator")
428
429        if isinstance(this, exp.Limit) and this.this:
430            limit = this
431            this = limit.this.pop()
432            return self.sql(
433                exp.ParameterizedAgg(
434                    this="groupConcat",
435                    params=[this],
436                    expressions=[separator, limit.expression],
437                )
438            )
439
440        if separator:
441            return self.sql(
442                exp.ParameterizedAgg(
443                    this="groupConcat",
444                    params=[this],
445                    expressions=[separator],
446                )
447            )
448
449        return self.func("groupConcat", this)
450
451    def offset_sql(self, expression: exp.Offset) -> str:
452        offset = super().offset_sql(expression)
453
454        # OFFSET ... FETCH syntax requires a "ROW" or "ROWS" keyword
455        # https://clickhouse.com/docs/sql-reference/statements/select/offset
456        parent = expression.parent
457        if isinstance(parent, exp.Select) and isinstance(parent.args.get("limit"), exp.Fetch):
458            offset = f"{offset} ROWS"
459
460        return offset
461
462    def strtodate_sql(self, expression: exp.StrToDate) -> str:
463        strtodate_sql = self.function_fallback_sql(expression)
464
465        if not isinstance(expression.parent, exp.Cast):
466            # StrToDate returns DATEs in other dialects (eg. postgres), so
467            # this branch aims to improve the transpilation to clickhouse
468            return self.cast_sql(exp.cast(expression, "DATE"))
469
470        return strtodate_sql
471
472    def cast_sql(self, expression: exp.Cast, safe_prefix: str | None = None) -> str:
473        this = expression.this
474
475        if isinstance(this, exp.StrToDate) and expression.to == exp.DType.DATETIME.into_expr():
476            return self.sql(this)
477
478        return super().cast_sql(expression, safe_prefix=safe_prefix)
479
480    def trycast_sql(self, expression: exp.TryCast) -> str:
481        dtype = expression.to
482        if not dtype.is_type(*self.NON_NULLABLE_TYPES, check_nullable=True):
483            # Casting x into Nullable(T) appears to behave similarly to TRY_CAST(x AS T)
484            dtype.set("nullable", True)
485
486        return super().cast_sql(expression)
487
488    def _jsonpathsubscript_sql(self, expression: exp.JSONPathSubscript) -> str:
489        this = self.json_path_part(expression.this)
490        return str(int(this) + 1) if is_int(this) else this
491
492    def likeproperty_sql(self, expression: exp.LikeProperty) -> str:
493        return f"AS {self.sql(expression, 'this')}"
494
495    def _any_to_has(
496        self,
497        expression: exp.EQ | exp.NEQ,
498        default: t.Callable[[t.Any], str],
499        prefix: str = "",
500    ) -> str:
501        if isinstance(expression.left, exp.Any):
502            arr = expression.left
503            this = expression.right
504        elif isinstance(expression.right, exp.Any):
505            arr = expression.right
506            this = expression.left
507        else:
508            return default(expression)
509
510        return prefix + self.func("has", arr.this.unnest(), this)
511
512    def eq_sql(self, expression: exp.EQ) -> str:
513        return self._any_to_has(expression, super().eq_sql)
514
515    def neq_sql(self, expression: exp.NEQ) -> str:
516        return self._any_to_has(expression, super().neq_sql, "NOT ")
517
518    def regexpilike_sql(self, expression: exp.RegexpILike) -> str:
519        # Manually add a flag to make the search case-insensitive
520        regex = self.func("CONCAT", "'(?i)'", expression.expression)
521        return self.func("match", expression.this, regex)
522
523    def datatype_sql(self, expression: exp.DataType) -> str:
524        # String is the standard ClickHouse type, every other variant is just an alias.
525        # Additionally, any supplied length parameter will be ignored.
526        #
527        # https://clickhouse.com/docs/en/sql-reference/data-types/string
528        if expression.this in self.STRING_TYPE_MAPPING:
529            dtype = "String"
530        else:
531            dtype = super().datatype_sql(expression)
532
533        # This section changes the type to `Nullable(...)` if the following conditions hold:
534        # - It's marked as nullable - this ensures we won't wrap ClickHouse types with `Nullable`
535        #   and change their semantics
536        # - It's not the key type of a `Map`. This is because ClickHouse enforces the following
537        #   constraint: "Type of Map key must be a type, that can be represented by integer or
538        #   String or FixedString (possibly LowCardinality) or UUID or IPv6"
539        # - It's not a composite type, e.g. `Nullable(Array(...))` is not a valid type
540        parent = expression.parent
541        nullable = expression.args.get("nullable")
542        if nullable is True or (
543            nullable is None
544            and not (
545                isinstance(parent, exp.DataType)
546                and parent.is_type(exp.DType.MAP, check_nullable=True)
547                and expression.index in (None, 0)
548            )
549            and not expression.is_type(*self.NON_NULLABLE_TYPES, check_nullable=True)
550        ):
551            dtype = f"Nullable({dtype})"
552
553        return dtype
554
555    def cte_sql(self, expression: exp.CTE) -> str:
556        if expression.args.get("scalar"):
557            this = self.sql(expression, "this")
558            alias = self.sql(expression, "alias")
559            return f"{this} AS {alias}"
560
561        return super().cte_sql(expression)
562
563    def after_limit_modifiers(self, expression: exp.Expr) -> list[str]:
564        return super().after_limit_modifiers(expression) + [
565            (
566                self.seg("SETTINGS ") + self.expressions(expression, key="settings", flat=True)
567                if expression.args.get("settings")
568                else ""
569            ),
570            (
571                self.seg("FORMAT ") + self.sql(expression, "format")
572                if expression.args.get("format")
573                else ""
574            ),
575        ]
576
577    def placeholder_sql(self, expression: exp.Placeholder) -> str:
578        return f"{{{expression.name}: {self.sql(expression, 'kind')}}}"
579
580    def oncluster_sql(self, expression: exp.OnCluster) -> str:
581        return f"ON CLUSTER {self.sql(expression, 'this')}"
582
583    def _refresh_interval_sql(self, expression: exp.Expr) -> str:
584        if isinstance(expression, exp.Add):
585            return f"{self._refresh_interval_sql(expression.this)} {self._refresh_interval_sql(expression.expression)}"
586        return self.sql(expression.assert_is(exp.Interval))
587
588    def autorefreshproperty_sql(self, expression: exp.AutoRefreshProperty) -> str:
589        cadence = self.sql(expression, "cadence")
590        interval = expression.this
591        schedule = (
592            f" {cadence} {self._refresh_interval_sql(interval)}" if cadence and interval else ""
593        )
594        offset = expression.args.get("offset")
595        offset = f" OFFSET {self._refresh_interval_sql(offset)}" if offset else ""
596        randomize = expression.args.get("randomize")
597        randomize = f" RANDOMIZE FOR {self._refresh_interval_sql(randomize)}" if randomize else ""
598        dependencies = self.expressions(expression, flat=True)
599        dependencies = f" DEPENDS ON {dependencies}" if dependencies else ""
600        settings = self.sql(expression, "settings")
601        settings = f" {settings}" if settings else ""
602        append = " APPEND" if expression.args.get("append") else ""
603
604        return f"REFRESH{schedule}{offset}{randomize}{dependencies}{settings}{append}"
605
606    def createable_sql(self, expression: exp.Create, locations: defaultdict) -> str:
607        if expression.kind in self.ON_CLUSTER_TARGETS and locations.get(
608            exp.Properties.Location.POST_NAME
609        ):
610            this_name = self.sql(
611                expression.this if isinstance(expression.this, exp.Schema) else expression,
612                "this",
613            )
614            this_properties = " ".join(
615                [self.sql(prop) for prop in locations[exp.Properties.Location.POST_NAME]]
616            )
617            this_schema = self.schema_columns_sql(expression.this)
618            this_schema = f"{self.sep()}{this_schema}" if this_schema else ""
619
620            return f"{this_name}{self.sep()}{this_properties}{this_schema}"
621
622        return super().createable_sql(expression, locations)
623
624    def create_sql(self, expression: exp.Create) -> str:
625        # The comment property comes last in CTAS statements, i.e. after the query
626        query = expression.expression
627        if isinstance(query, exp.Query):
628            comment_prop = expression.find(exp.SchemaCommentProperty)
629            if comment_prop:
630                comment_prop.pop()
631                query.replace(exp.paren(query))
632        else:
633            comment_prop = None
634
635        create_sql = super().create_sql(expression)
636
637        comment_sql = self.sql(comment_prop)
638        comment_sql = f" {comment_sql}" if comment_sql else ""
639
640        return f"{create_sql}{comment_sql}"
641
642    def prewhere_sql(self, expression: exp.PreWhere) -> str:
643        this = self.indent(self.sql(expression, "this"))
644        return f"{self.seg('PREWHERE')}{self.sep()}{this}"
645
646    def indexcolumnconstraint_sql(self, expression: exp.IndexColumnConstraint) -> str:
647        this = self.sql(expression, "this")
648        this = f" {this}" if this else ""
649        expr = self.sql(expression, "expression")
650        expr = f" {expr}" if expr else ""
651        index_type = self.sql(expression, "index_type")
652        index_type = f" TYPE {index_type}" if index_type else ""
653        granularity = self.sql(expression, "granularity")
654        granularity = f" GRANULARITY {granularity}" if granularity else ""
655
656        return f"INDEX{this}{expr}{index_type}{granularity}"
657
658    def partition_sql(self, expression: exp.Partition) -> str:
659        return f"PARTITION {self.expressions(expression, flat=True)}"
660
661    def partitionid_sql(self, expression: exp.PartitionId) -> str:
662        return f"ID {self.sql(expression.this)}"
663
664    def replacepartition_sql(self, expression: exp.ReplacePartition) -> str:
665        return f"REPLACE {self.sql(expression.expression)} FROM {self.sql(expression, 'source')}"
666
667    def projectiondef_sql(self, expression: exp.ProjectionDef) -> str:
668        return f"PROJECTION {self.sql(expression.this)} {self.wrap(expression.expression)}"
669
670    def nestedjsonselect_sql(self, expression: exp.NestedJSONSelect) -> str:
671        return f"{self.sql(expression, 'this')}.^{self.sql(expression, 'expression')}"
672
673    def is_sql(self, expression: exp.Is) -> str:
674        is_sql = super().is_sql(expression)
675
676        if isinstance(expression.parent, exp.Not):
677            # value IS NOT NULL -> NOT (value IS NULL)
678            is_sql = self.wrap(is_sql)
679
680        return is_sql
681
682    def in_sql(self, expression: exp.In) -> str:
683        in_sql = super().in_sql(expression)
684
685        if isinstance(expression.parent, exp.Not) and expression.args.get("is_global"):
686            in_sql = in_sql.replace("GLOBAL IN", "GLOBAL NOT IN", 1)
687
688        return in_sql
689
690    def not_sql(self, expression: exp.Not) -> str:
691        if isinstance(expression.this, exp.In):
692            if expression.this.args.get("is_global"):
693                # let `GLOBAL IN` child interpose `NOT`
694                return self.sql(expression, "this")
695
696            expression.set("this", exp.paren(expression.this, copy=False))
697
698        return super().not_sql(expression)
699
700    def values_sql(self, expression: exp.Values, values_as_table: bool = True) -> str:
701        # If the VALUES clause contains tuples of expressions, we need to treat it
702        # as a table since Clickhouse will automatically alias it as such.
703        alias = expression.args.get("alias")
704
705        if alias and alias.args.get("columns") and expression.expressions:
706            values = expression.expressions[0].expressions
707            values_as_table = any(isinstance(value, exp.Tuple) for value in values)
708        else:
709            values_as_table = True
710
711        return super().values_sql(expression, values_as_table=values_as_table)
712
713    def timestamptrunc_sql(self, expression: exp.DateTrunc | exp.TimestampTrunc) -> str:
714        unit = weekstart_unit_to_str(self, expression)
715        # https://clickhouse.com/docs/whats-new/changelog/2023#improvement
716        if self.dialect.version < (23, 12) and unit and unit.is_string:
717            unit = exp.Literal.string(unit.name.lower())
718        return self.func("dateTrunc", unit, expression.this, expression.args.get("zone"))
719
720    def datetrunc_sql(self, expression: exp.DateTrunc) -> str:
721        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    ALTER_SET_TYPE = "TYPE"
179    TABLESAMPLE_REQUIRES_PARENS = False
180    TABLESAMPLE_SIZE_IS_ROWS = False
181    TABLESAMPLE_KEYWORDS = "SAMPLE"
182    LAST_DAY_SUPPORTS_DATE_PART = False
183    CAN_IMPLEMENT_ARRAY_ANY = True
184    SUPPORTS_TO_NUMBER = False
185    JOIN_HINTS = False
186    TABLE_HINTS = False
187    GROUPINGS_SEP = ""
188    SET_OP_MODIFIERS = False
189    ARRAY_SIZE_NAME = "LENGTH"
190    WRAP_DERIVED_VALUES = False
191    AUTO_REFRESH_BARE_INTERVALS = True
192
193    STRING_TYPE_MAPPING: t.ClassVar = {
194        exp.DType.BLOB: "String",
195        exp.DType.CHAR: "String",
196        exp.DType.LONGBLOB: "String",
197        exp.DType.LONGTEXT: "String",
198        exp.DType.MEDIUMBLOB: "String",
199        exp.DType.MEDIUMTEXT: "String",
200        exp.DType.TINYBLOB: "String",
201        exp.DType.TINYTEXT: "String",
202        exp.DType.TEXT: "String",
203        exp.DType.VARBINARY: "String",
204        exp.DType.VARCHAR: "String",
205    }
206
207    SUPPORTED_JSON_PATH_PARTS = {
208        exp.JSONPathKey,
209        exp.JSONPathRoot,
210        exp.JSONPathSubscript,
211    }
212
213    TYPE_MAPPING = {
214        **generator.Generator.TYPE_MAPPING,
215        exp.DType.BLOB: "String",
216        exp.DType.CHAR: "String",
217        exp.DType.LONGBLOB: "String",
218        exp.DType.LONGTEXT: "String",
219        exp.DType.MEDIUMBLOB: "String",
220        exp.DType.MEDIUMTEXT: "String",
221        exp.DType.TINYBLOB: "String",
222        exp.DType.TINYTEXT: "String",
223        exp.DType.TEXT: "String",
224        exp.DType.VARBINARY: "String",
225        exp.DType.VARCHAR: "String",
226        exp.DType.ARRAY: "Array",
227        exp.DType.BOOLEAN: "Bool",
228        exp.DType.BIGINT: "Int64",
229        exp.DType.DATE32: "Date32",
230        exp.DType.DATETIME: "DateTime",
231        exp.DType.DATETIME2: "DateTime",
232        exp.DType.SMALLDATETIME: "DateTime",
233        exp.DType.DATETIME64: "DateTime64",
234        exp.DType.DECIMAL: "Decimal",
235        exp.DType.DECIMAL32: "Decimal32",
236        exp.DType.DECIMAL64: "Decimal64",
237        exp.DType.DECIMAL128: "Decimal128",
238        exp.DType.DECIMAL256: "Decimal256",
239        exp.DType.TIMESTAMP: "DateTime",
240        exp.DType.TIMESTAMPNTZ: "DateTime",
241        exp.DType.TIMESTAMPTZ: "DateTime",
242        exp.DType.DOUBLE: "Float64",
243        exp.DType.ENUM: "Enum",
244        exp.DType.ENUM8: "Enum8",
245        exp.DType.ENUM16: "Enum16",
246        exp.DType.FIXEDSTRING: "FixedString",
247        exp.DType.FLOAT: "Float32",
248        exp.DType.INT: "Int32",
249        exp.DType.MEDIUMINT: "Int32",
250        exp.DType.INT128: "Int128",
251        exp.DType.INT256: "Int256",
252        exp.DType.LOWCARDINALITY: "LowCardinality",
253        exp.DType.MAP: "Map",
254        exp.DType.NESTED: "Nested",
255        exp.DType.NOTHING: "Nothing",
256        exp.DType.SMALLINT: "Int16",
257        exp.DType.STRUCT: "Tuple",
258        exp.DType.TINYINT: "Int8",
259        exp.DType.UBIGINT: "UInt64",
260        exp.DType.UINT: "UInt32",
261        exp.DType.UINT128: "UInt128",
262        exp.DType.UINT256: "UInt256",
263        exp.DType.USMALLINT: "UInt16",
264        exp.DType.UTINYINT: "UInt8",
265        exp.DType.IPV4: "IPv4",
266        exp.DType.IPV6: "IPv6",
267        exp.DType.POINT: "Point",
268        exp.DType.RING: "Ring",
269        exp.DType.LINESTRING: "LineString",
270        exp.DType.MULTILINESTRING: "MultiLineString",
271        exp.DType.POLYGON: "Polygon",
272        exp.DType.MULTIPOLYGON: "MultiPolygon",
273        exp.DType.AGGREGATEFUNCTION: "AggregateFunction",
274        exp.DType.SIMPLEAGGREGATEFUNCTION: "SimpleAggregateFunction",
275        exp.DType.DYNAMIC: "Dynamic",
276    }
277
278    TRANSFORMS = {
279        **{k: v for k, v in generator.Generator.TRANSFORMS.items() if k != exp.AutoRefreshProperty},
280        exp.AnyValue: rename_func("any"),
281        exp.ApproxDistinct: rename_func("uniq"),
282        exp.ArrayDistinct: rename_func("arrayDistinct"),
283        exp.ArrayConcat: rename_func("arrayConcat"),
284        exp.ArrayContains: rename_func("has"),
285        exp.ArrayFilter: lambda self, e: self.func("arrayFilter", e.expression, e.this),
286        exp.Transform: lambda self, e: self.func("arrayMap", e.expression, e.this),
287        exp.ArrayRemove: remove_from_array_using_filter,
288        exp.ArrayReverse: rename_func("arrayReverse"),
289        exp.ArraySlice: rename_func("arraySlice"),
290        exp.ArraySum: rename_func("arraySum"),
291        exp.ArrayMax: rename_func("arrayMax"),
292        exp.ArrayMin: rename_func("arrayMin"),
293        exp.ArgMax: arg_max_or_min_no_count("argMax"),
294        exp.ArgMin: arg_max_or_min_no_count("argMin"),
295        exp.Array: inline_array_sql,
296        exp.CityHash64: rename_func("cityHash64"),
297        exp.CastToStrType: rename_func("CAST"),
298        exp.CurrentDatabase: rename_func("CURRENT_DATABASE"),
299        exp.CurrentSchemas: rename_func("CURRENT_SCHEMAS"),
300        exp.CountIf: rename_func("countIf"),
301        exp.CosineDistance: rename_func("cosineDistance"),
302        exp.CompressColumnConstraint: lambda self, e: (
303            f"CODEC({self.expressions(e, key='this', flat=True)})"
304        ),
305        exp.ComputedColumnConstraint: lambda self, e: (
306            f"{'MATERIALIZED' if e.args.get('persisted') else 'ALIAS'} {self.sql(e, 'this')}"
307        ),
308        exp.CurrentDate: lambda self, e: self.func("CURRENT_DATE"),
309        exp.CurrentVersion: rename_func("VERSION"),
310        exp.DateAdd: _datetime_delta_sql("DATE_ADD"),
311        exp.DateDiff: _datetime_delta_sql("DATE_DIFF"),
312        exp.DateStrToDate: rename_func("toDate"),
313        exp.DateSub: _datetime_delta_sql("DATE_SUB"),
314        exp.Explode: rename_func("arrayJoin"),
315        exp.FarmFingerprint: rename_func("farmFingerprint64"),
316        exp.Final: lambda self, e: f"{self.sql(e, 'this')} FINAL",
317        exp.IsNan: rename_func("isNaN"),
318        exp.JarowinklerSimilarity: jarowinkler_similarity("jaroWinklerSimilarity"),
319        exp.JSONCast: _json_cast_sql,
320        exp.JSONExtract: json_extract_segments("JSONExtractString", quoted_index=False),
321        exp.JSONExtractScalar: json_extract_segments("JSONExtractString", quoted_index=False),
322        exp.JSONPathKey: json_path_key_only_name,
323        exp.JSONPathRoot: lambda *_: "",
324        exp.Length: length_or_char_length_sql,
325        exp.Map: _map_sql,
326        exp.Median: rename_func("median"),
327        exp.Nullif: rename_func("nullIf"),
328        exp.PartitionedByProperty: lambda self, e: f"PARTITION BY {self.sql(e, 'this')}",
329        exp.Pivot: no_pivot_sql,
330        exp.Quantile: _quantile_sql,
331        exp.RegexpLike: lambda self, e: self.func("match", e.this, e.expression),
332        exp.Rand: rename_func("randCanonical"),
333        exp.StartsWith: rename_func("startsWith"),
334        exp.Struct: rename_func("tuple"),
335        exp.Trunc: rename_func("trunc"),
336        exp.EndsWith: rename_func("endsWith"),
337        exp.EuclideanDistance: rename_func("L2Distance"),
338        exp.StrPosition: lambda self, e: strposition_sql(
339            self,
340            e,
341            func_name="POSITION",
342            supports_position=True,
343            use_ansi_position=False,
344        ),
345        exp.TimeToStr: lambda self, e: self.func(
346            "formatDateTime",
347            e.this.this if isinstance(e.this, exp.TsOrDsToTimestamp) else e.this,
348            self.format_time(e),
349            e.args.get("zone"),
350        ),
351        exp.TimeStrToTime: _timestrtotime_sql,
352        exp.TimestampAdd: _datetime_delta_sql("TIMESTAMP_ADD"),
353        exp.TimestampSub: _datetime_delta_sql("TIMESTAMP_SUB"),
354        exp.Typeof: rename_func("toTypeName"),
355        exp.VarMap: _map_sql,
356        exp.Xor: lambda self, e: self.func("xor", e.this, e.expression),
357        exp.MD5Digest: rename_func("MD5"),
358        exp.MD5: lambda self, e: self.func("LOWER", self.func("HEX", self.func("MD5", e.this))),
359        exp.SHA: rename_func("SHA1"),
360        exp.SHA1Digest: rename_func("SHA1"),
361        exp.SHA2: sha256_sql,
362        exp.SHA2Digest: sha2_digest_sql,
363        exp.Split: lambda self, e: self.func(
364            "splitByString", e.args.get("expression"), e.this, e.args.get("limit")
365        ),
366        exp.RegexpSplit: lambda self, e: self.func(
367            "splitByRegexp", e.args.get("expression"), e.this, e.args.get("limit")
368        ),
369        exp.UnixToTime: _unix_to_time_sql,
370        exp.Trim: lambda self, e: trim_sql(self, e, default_trim_type="BOTH"),
371        exp.Variance: rename_func("varSamp"),
372        exp.SchemaCommentProperty: lambda self, e: self.naked_property(e),
373        exp.Stddev: rename_func("stddevSamp"),
374        exp.Chr: rename_func("CHAR"),
375        exp.Lag: lambda self, e: self.func(
376            "lagInFrame", e.this, e.args.get("offset"), e.args.get("default")
377        ),
378        exp.Lead: lambda self, e: self.func(
379            "leadInFrame", e.this, e.args.get("offset"), e.args.get("default")
380        ),
381        exp.Levenshtein: unsupported_args("ins_cost", "del_cost", "sub_cost", "max_dist")(
382            rename_func("editDistance")
383        ),
384        exp.ParseDatetime: lambda self, e: self.func(
385            "parseDateTime", e.this, e.args.get("format"), e.args.get("zone")
386        ),
387    }
388
389    PROPERTIES_LOCATION = {
390        **generator.Generator.PROPERTIES_LOCATION,
391        exp.AutoRefreshProperty: exp.Properties.Location.POST_NAME,
392        exp.DefinerProperty: exp.Properties.Location.POST_SCHEMA,
393        exp.OnCluster: exp.Properties.Location.POST_NAME,
394        exp.PartitionedByProperty: exp.Properties.Location.POST_SCHEMA,
395        exp.ToTableProperty: exp.Properties.Location.POST_NAME,
396        exp.UuidProperty: exp.Properties.Location.POST_NAME,
397        exp.VolatileProperty: exp.Properties.Location.UNSUPPORTED,
398    }
399
400    # There's no list in docs, but it can be found in Clickhouse code
401    # see `ClickHouse/src/Parsers/ParserCreate*.cpp`
402    ON_CLUSTER_TARGETS = {
403        "SCHEMA",  # Transpiled CREATE SCHEMA may have OnCluster property set
404        "DATABASE",
405        "TABLE",
406        "VIEW",
407        "DICTIONARY",
408        "INDEX",
409        "FUNCTION",
410        "NAMED COLLECTION",
411    }
412
413    # https://clickhouse.com/docs/en/sql-reference/data-types/nullable
414    NON_NULLABLE_TYPES = {
415        exp.DType.ARRAY,
416        exp.DType.MAP,
417        exp.DType.STRUCT,
418        exp.DType.POINT,
419        exp.DType.RING,
420        exp.DType.LINESTRING,
421        exp.DType.MULTILINESTRING,
422        exp.DType.POLYGON,
423        exp.DType.MULTIPOLYGON,
424    }
425
426    def groupconcat_sql(self, expression: exp.GroupConcat) -> str:
427        this = expression.this
428        separator = expression.args.get("separator")
429
430        if isinstance(this, exp.Limit) and this.this:
431            limit = this
432            this = limit.this.pop()
433            return self.sql(
434                exp.ParameterizedAgg(
435                    this="groupConcat",
436                    params=[this],
437                    expressions=[separator, limit.expression],
438                )
439            )
440
441        if separator:
442            return self.sql(
443                exp.ParameterizedAgg(
444                    this="groupConcat",
445                    params=[this],
446                    expressions=[separator],
447                )
448            )
449
450        return self.func("groupConcat", this)
451
452    def offset_sql(self, expression: exp.Offset) -> str:
453        offset = super().offset_sql(expression)
454
455        # OFFSET ... FETCH syntax requires a "ROW" or "ROWS" keyword
456        # https://clickhouse.com/docs/sql-reference/statements/select/offset
457        parent = expression.parent
458        if isinstance(parent, exp.Select) and isinstance(parent.args.get("limit"), exp.Fetch):
459            offset = f"{offset} ROWS"
460
461        return offset
462
463    def strtodate_sql(self, expression: exp.StrToDate) -> str:
464        strtodate_sql = self.function_fallback_sql(expression)
465
466        if not isinstance(expression.parent, exp.Cast):
467            # StrToDate returns DATEs in other dialects (eg. postgres), so
468            # this branch aims to improve the transpilation to clickhouse
469            return self.cast_sql(exp.cast(expression, "DATE"))
470
471        return strtodate_sql
472
473    def cast_sql(self, expression: exp.Cast, safe_prefix: str | None = None) -> str:
474        this = expression.this
475
476        if isinstance(this, exp.StrToDate) and expression.to == exp.DType.DATETIME.into_expr():
477            return self.sql(this)
478
479        return super().cast_sql(expression, safe_prefix=safe_prefix)
480
481    def trycast_sql(self, expression: exp.TryCast) -> str:
482        dtype = expression.to
483        if not dtype.is_type(*self.NON_NULLABLE_TYPES, check_nullable=True):
484            # Casting x into Nullable(T) appears to behave similarly to TRY_CAST(x AS T)
485            dtype.set("nullable", True)
486
487        return super().cast_sql(expression)
488
489    def _jsonpathsubscript_sql(self, expression: exp.JSONPathSubscript) -> str:
490        this = self.json_path_part(expression.this)
491        return str(int(this) + 1) if is_int(this) else this
492
493    def likeproperty_sql(self, expression: exp.LikeProperty) -> str:
494        return f"AS {self.sql(expression, 'this')}"
495
496    def _any_to_has(
497        self,
498        expression: exp.EQ | exp.NEQ,
499        default: t.Callable[[t.Any], str],
500        prefix: str = "",
501    ) -> str:
502        if isinstance(expression.left, exp.Any):
503            arr = expression.left
504            this = expression.right
505        elif isinstance(expression.right, exp.Any):
506            arr = expression.right
507            this = expression.left
508        else:
509            return default(expression)
510
511        return prefix + self.func("has", arr.this.unnest(), this)
512
513    def eq_sql(self, expression: exp.EQ) -> str:
514        return self._any_to_has(expression, super().eq_sql)
515
516    def neq_sql(self, expression: exp.NEQ) -> str:
517        return self._any_to_has(expression, super().neq_sql, "NOT ")
518
519    def regexpilike_sql(self, expression: exp.RegexpILike) -> str:
520        # Manually add a flag to make the search case-insensitive
521        regex = self.func("CONCAT", "'(?i)'", expression.expression)
522        return self.func("match", expression.this, regex)
523
524    def datatype_sql(self, expression: exp.DataType) -> str:
525        # String is the standard ClickHouse type, every other variant is just an alias.
526        # Additionally, any supplied length parameter will be ignored.
527        #
528        # https://clickhouse.com/docs/en/sql-reference/data-types/string
529        if expression.this in self.STRING_TYPE_MAPPING:
530            dtype = "String"
531        else:
532            dtype = super().datatype_sql(expression)
533
534        # This section changes the type to `Nullable(...)` if the following conditions hold:
535        # - It's marked as nullable - this ensures we won't wrap ClickHouse types with `Nullable`
536        #   and change their semantics
537        # - It's not the key type of a `Map`. This is because ClickHouse enforces the following
538        #   constraint: "Type of Map key must be a type, that can be represented by integer or
539        #   String or FixedString (possibly LowCardinality) or UUID or IPv6"
540        # - It's not a composite type, e.g. `Nullable(Array(...))` is not a valid type
541        parent = expression.parent
542        nullable = expression.args.get("nullable")
543        if nullable is True or (
544            nullable is None
545            and not (
546                isinstance(parent, exp.DataType)
547                and parent.is_type(exp.DType.MAP, check_nullable=True)
548                and expression.index in (None, 0)
549            )
550            and not expression.is_type(*self.NON_NULLABLE_TYPES, check_nullable=True)
551        ):
552            dtype = f"Nullable({dtype})"
553
554        return dtype
555
556    def cte_sql(self, expression: exp.CTE) -> str:
557        if expression.args.get("scalar"):
558            this = self.sql(expression, "this")
559            alias = self.sql(expression, "alias")
560            return f"{this} AS {alias}"
561
562        return super().cte_sql(expression)
563
564    def after_limit_modifiers(self, expression: exp.Expr) -> list[str]:
565        return super().after_limit_modifiers(expression) + [
566            (
567                self.seg("SETTINGS ") + self.expressions(expression, key="settings", flat=True)
568                if expression.args.get("settings")
569                else ""
570            ),
571            (
572                self.seg("FORMAT ") + self.sql(expression, "format")
573                if expression.args.get("format")
574                else ""
575            ),
576        ]
577
578    def placeholder_sql(self, expression: exp.Placeholder) -> str:
579        return f"{{{expression.name}: {self.sql(expression, 'kind')}}}"
580
581    def oncluster_sql(self, expression: exp.OnCluster) -> str:
582        return f"ON CLUSTER {self.sql(expression, 'this')}"
583
584    def _refresh_interval_sql(self, expression: exp.Expr) -> str:
585        if isinstance(expression, exp.Add):
586            return f"{self._refresh_interval_sql(expression.this)} {self._refresh_interval_sql(expression.expression)}"
587        return self.sql(expression.assert_is(exp.Interval))
588
589    def autorefreshproperty_sql(self, expression: exp.AutoRefreshProperty) -> str:
590        cadence = self.sql(expression, "cadence")
591        interval = expression.this
592        schedule = (
593            f" {cadence} {self._refresh_interval_sql(interval)}" if cadence and interval else ""
594        )
595        offset = expression.args.get("offset")
596        offset = f" OFFSET {self._refresh_interval_sql(offset)}" if offset else ""
597        randomize = expression.args.get("randomize")
598        randomize = f" RANDOMIZE FOR {self._refresh_interval_sql(randomize)}" if randomize else ""
599        dependencies = self.expressions(expression, flat=True)
600        dependencies = f" DEPENDS ON {dependencies}" if dependencies else ""
601        settings = self.sql(expression, "settings")
602        settings = f" {settings}" if settings else ""
603        append = " APPEND" if expression.args.get("append") else ""
604
605        return f"REFRESH{schedule}{offset}{randomize}{dependencies}{settings}{append}"
606
607    def createable_sql(self, expression: exp.Create, locations: defaultdict) -> str:
608        if expression.kind in self.ON_CLUSTER_TARGETS and locations.get(
609            exp.Properties.Location.POST_NAME
610        ):
611            this_name = self.sql(
612                expression.this if isinstance(expression.this, exp.Schema) else expression,
613                "this",
614            )
615            this_properties = " ".join(
616                [self.sql(prop) for prop in locations[exp.Properties.Location.POST_NAME]]
617            )
618            this_schema = self.schema_columns_sql(expression.this)
619            this_schema = f"{self.sep()}{this_schema}" if this_schema else ""
620
621            return f"{this_name}{self.sep()}{this_properties}{this_schema}"
622
623        return super().createable_sql(expression, locations)
624
625    def create_sql(self, expression: exp.Create) -> str:
626        # The comment property comes last in CTAS statements, i.e. after the query
627        query = expression.expression
628        if isinstance(query, exp.Query):
629            comment_prop = expression.find(exp.SchemaCommentProperty)
630            if comment_prop:
631                comment_prop.pop()
632                query.replace(exp.paren(query))
633        else:
634            comment_prop = None
635
636        create_sql = super().create_sql(expression)
637
638        comment_sql = self.sql(comment_prop)
639        comment_sql = f" {comment_sql}" if comment_sql else ""
640
641        return f"{create_sql}{comment_sql}"
642
643    def prewhere_sql(self, expression: exp.PreWhere) -> str:
644        this = self.indent(self.sql(expression, "this"))
645        return f"{self.seg('PREWHERE')}{self.sep()}{this}"
646
647    def indexcolumnconstraint_sql(self, expression: exp.IndexColumnConstraint) -> str:
648        this = self.sql(expression, "this")
649        this = f" {this}" if this else ""
650        expr = self.sql(expression, "expression")
651        expr = f" {expr}" if expr else ""
652        index_type = self.sql(expression, "index_type")
653        index_type = f" TYPE {index_type}" if index_type else ""
654        granularity = self.sql(expression, "granularity")
655        granularity = f" GRANULARITY {granularity}" if granularity else ""
656
657        return f"INDEX{this}{expr}{index_type}{granularity}"
658
659    def partition_sql(self, expression: exp.Partition) -> str:
660        return f"PARTITION {self.expressions(expression, flat=True)}"
661
662    def partitionid_sql(self, expression: exp.PartitionId) -> str:
663        return f"ID {self.sql(expression.this)}"
664
665    def replacepartition_sql(self, expression: exp.ReplacePartition) -> str:
666        return f"REPLACE {self.sql(expression.expression)} FROM {self.sql(expression, 'source')}"
667
668    def projectiondef_sql(self, expression: exp.ProjectionDef) -> str:
669        return f"PROJECTION {self.sql(expression.this)} {self.wrap(expression.expression)}"
670
671    def nestedjsonselect_sql(self, expression: exp.NestedJSONSelect) -> str:
672        return f"{self.sql(expression, 'this')}.^{self.sql(expression, 'expression')}"
673
674    def is_sql(self, expression: exp.Is) -> str:
675        is_sql = super().is_sql(expression)
676
677        if isinstance(expression.parent, exp.Not):
678            # value IS NOT NULL -> NOT (value IS NULL)
679            is_sql = self.wrap(is_sql)
680
681        return is_sql
682
683    def in_sql(self, expression: exp.In) -> str:
684        in_sql = super().in_sql(expression)
685
686        if isinstance(expression.parent, exp.Not) and expression.args.get("is_global"):
687            in_sql = in_sql.replace("GLOBAL IN", "GLOBAL NOT IN", 1)
688
689        return in_sql
690
691    def not_sql(self, expression: exp.Not) -> str:
692        if isinstance(expression.this, exp.In):
693            if expression.this.args.get("is_global"):
694                # let `GLOBAL IN` child interpose `NOT`
695                return self.sql(expression, "this")
696
697            expression.set("this", exp.paren(expression.this, copy=False))
698
699        return super().not_sql(expression)
700
701    def values_sql(self, expression: exp.Values, values_as_table: bool = True) -> str:
702        # If the VALUES clause contains tuples of expressions, we need to treat it
703        # as a table since Clickhouse will automatically alias it as such.
704        alias = expression.args.get("alias")
705
706        if alias and alias.args.get("columns") and expression.expressions:
707            values = expression.expressions[0].expressions
708            values_as_table = any(isinstance(value, exp.Tuple) for value in values)
709        else:
710            values_as_table = True
711
712        return super().values_sql(expression, values_as_table=values_as_table)
713
714    def timestamptrunc_sql(self, expression: exp.DateTrunc | exp.TimestampTrunc) -> str:
715        unit = weekstart_unit_to_str(self, expression)
716        # https://clickhouse.com/docs/whats-new/changelog/2023#improvement
717        if self.dialect.version < (23, 12) and unit and unit.is_string:
718            unit = exp.Literal.string(unit.name.lower())
719        return self.func("dateTrunc", unit, expression.this, expression.args.get("zone"))
720
721    def datetrunc_sql(self, expression: exp.DateTrunc) -> str:
722        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
ALTER_SET_TYPE = 'TYPE'
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
AUTO_REFRESH_BARE_INTERVALS = True
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.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_NAME: 'POST_NAME'>, <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', 'DICTIONARY', 'VIEW', 'NAMED COLLECTION', 'INDEX', 'DATABASE', 'TABLE', 'FUNCTION'}
NON_NULLABLE_TYPES = {<DType.STRUCT: 'STRUCT'>, <DType.MULTILINESTRING: 'MULTILINESTRING'>, <DType.MAP: 'MAP'>, <DType.LINESTRING: 'LINESTRING'>, <DType.POLYGON: 'POLYGON'>, <DType.MULTIPOLYGON: 'MULTIPOLYGON'>, <DType.POINT: 'POINT'>, <DType.RING: 'RING'>, <DType.ARRAY: 'ARRAY'>}
def groupconcat_sql(self, expression: sqlglot.expressions.aggregate.GroupConcat) -> str:
426    def groupconcat_sql(self, expression: exp.GroupConcat) -> str:
427        this = expression.this
428        separator = expression.args.get("separator")
429
430        if isinstance(this, exp.Limit) and this.this:
431            limit = this
432            this = limit.this.pop()
433            return self.sql(
434                exp.ParameterizedAgg(
435                    this="groupConcat",
436                    params=[this],
437                    expressions=[separator, limit.expression],
438                )
439            )
440
441        if separator:
442            return self.sql(
443                exp.ParameterizedAgg(
444                    this="groupConcat",
445                    params=[this],
446                    expressions=[separator],
447                )
448            )
449
450        return self.func("groupConcat", this)
def offset_sql(self, expression: sqlglot.expressions.query.Offset) -> str:
452    def offset_sql(self, expression: exp.Offset) -> str:
453        offset = super().offset_sql(expression)
454
455        # OFFSET ... FETCH syntax requires a "ROW" or "ROWS" keyword
456        # https://clickhouse.com/docs/sql-reference/statements/select/offset
457        parent = expression.parent
458        if isinstance(parent, exp.Select) and isinstance(parent.args.get("limit"), exp.Fetch):
459            offset = f"{offset} ROWS"
460
461        return offset
def strtodate_sql(self, expression: sqlglot.expressions.temporal.StrToDate) -> str:
463    def strtodate_sql(self, expression: exp.StrToDate) -> str:
464        strtodate_sql = self.function_fallback_sql(expression)
465
466        if not isinstance(expression.parent, exp.Cast):
467            # StrToDate returns DATEs in other dialects (eg. postgres), so
468            # this branch aims to improve the transpilation to clickhouse
469            return self.cast_sql(exp.cast(expression, "DATE"))
470
471        return strtodate_sql
def cast_sql( self, expression: sqlglot.expressions.functions.Cast, safe_prefix: str | None = None) -> str:
473    def cast_sql(self, expression: exp.Cast, safe_prefix: str | None = None) -> str:
474        this = expression.this
475
476        if isinstance(this, exp.StrToDate) and expression.to == exp.DType.DATETIME.into_expr():
477            return self.sql(this)
478
479        return super().cast_sql(expression, safe_prefix=safe_prefix)
def trycast_sql(self, expression: sqlglot.expressions.functions.TryCast) -> str:
481    def trycast_sql(self, expression: exp.TryCast) -> str:
482        dtype = expression.to
483        if not dtype.is_type(*self.NON_NULLABLE_TYPES, check_nullable=True):
484            # Casting x into Nullable(T) appears to behave similarly to TRY_CAST(x AS T)
485            dtype.set("nullable", True)
486
487        return super().cast_sql(expression)
def likeproperty_sql(self, expression: sqlglot.expressions.properties.LikeProperty) -> str:
493    def likeproperty_sql(self, expression: exp.LikeProperty) -> str:
494        return f"AS {self.sql(expression, 'this')}"
def eq_sql(self, expression: sqlglot.expressions.core.EQ) -> str:
513    def eq_sql(self, expression: exp.EQ) -> str:
514        return self._any_to_has(expression, super().eq_sql)
def neq_sql(self, expression: sqlglot.expressions.core.NEQ) -> str:
516    def neq_sql(self, expression: exp.NEQ) -> str:
517        return self._any_to_has(expression, super().neq_sql, "NOT ")
def regexpilike_sql(self, expression: sqlglot.expressions.string.RegexpILike) -> str:
519    def regexpilike_sql(self, expression: exp.RegexpILike) -> str:
520        # Manually add a flag to make the search case-insensitive
521        regex = self.func("CONCAT", "'(?i)'", expression.expression)
522        return self.func("match", expression.this, regex)
def datatype_sql(self, expression: sqlglot.expressions.datatypes.DataType) -> str:
524    def datatype_sql(self, expression: exp.DataType) -> str:
525        # String is the standard ClickHouse type, every other variant is just an alias.
526        # Additionally, any supplied length parameter will be ignored.
527        #
528        # https://clickhouse.com/docs/en/sql-reference/data-types/string
529        if expression.this in self.STRING_TYPE_MAPPING:
530            dtype = "String"
531        else:
532            dtype = super().datatype_sql(expression)
533
534        # This section changes the type to `Nullable(...)` if the following conditions hold:
535        # - It's marked as nullable - this ensures we won't wrap ClickHouse types with `Nullable`
536        #   and change their semantics
537        # - It's not the key type of a `Map`. This is because ClickHouse enforces the following
538        #   constraint: "Type of Map key must be a type, that can be represented by integer or
539        #   String or FixedString (possibly LowCardinality) or UUID or IPv6"
540        # - It's not a composite type, e.g. `Nullable(Array(...))` is not a valid type
541        parent = expression.parent
542        nullable = expression.args.get("nullable")
543        if nullable is True or (
544            nullable is None
545            and not (
546                isinstance(parent, exp.DataType)
547                and parent.is_type(exp.DType.MAP, check_nullable=True)
548                and expression.index in (None, 0)
549            )
550            and not expression.is_type(*self.NON_NULLABLE_TYPES, check_nullable=True)
551        ):
552            dtype = f"Nullable({dtype})"
553
554        return dtype
def cte_sql(self, expression: sqlglot.expressions.query.CTE) -> str:
556    def cte_sql(self, expression: exp.CTE) -> str:
557        if expression.args.get("scalar"):
558            this = self.sql(expression, "this")
559            alias = self.sql(expression, "alias")
560            return f"{this} AS {alias}"
561
562        return super().cte_sql(expression)
def after_limit_modifiers(self, expression: sqlglot.expressions.core.Expr) -> list[str]:
564    def after_limit_modifiers(self, expression: exp.Expr) -> list[str]:
565        return super().after_limit_modifiers(expression) + [
566            (
567                self.seg("SETTINGS ") + self.expressions(expression, key="settings", flat=True)
568                if expression.args.get("settings")
569                else ""
570            ),
571            (
572                self.seg("FORMAT ") + self.sql(expression, "format")
573                if expression.args.get("format")
574                else ""
575            ),
576        ]
def placeholder_sql(self, expression: sqlglot.expressions.core.Placeholder) -> str:
578    def placeholder_sql(self, expression: exp.Placeholder) -> str:
579        return f"{{{expression.name}: {self.sql(expression, 'kind')}}}"
def oncluster_sql(self, expression: sqlglot.expressions.properties.OnCluster) -> str:
581    def oncluster_sql(self, expression: exp.OnCluster) -> str:
582        return f"ON CLUSTER {self.sql(expression, 'this')}"
def autorefreshproperty_sql( self, expression: sqlglot.expressions.properties.AutoRefreshProperty) -> str:
589    def autorefreshproperty_sql(self, expression: exp.AutoRefreshProperty) -> str:
590        cadence = self.sql(expression, "cadence")
591        interval = expression.this
592        schedule = (
593            f" {cadence} {self._refresh_interval_sql(interval)}" if cadence and interval else ""
594        )
595        offset = expression.args.get("offset")
596        offset = f" OFFSET {self._refresh_interval_sql(offset)}" if offset else ""
597        randomize = expression.args.get("randomize")
598        randomize = f" RANDOMIZE FOR {self._refresh_interval_sql(randomize)}" if randomize else ""
599        dependencies = self.expressions(expression, flat=True)
600        dependencies = f" DEPENDS ON {dependencies}" if dependencies else ""
601        settings = self.sql(expression, "settings")
602        settings = f" {settings}" if settings else ""
603        append = " APPEND" if expression.args.get("append") else ""
604
605        return f"REFRESH{schedule}{offset}{randomize}{dependencies}{settings}{append}"
def createable_sql( self, expression: sqlglot.expressions.ddl.Create, locations: collections.defaultdict) -> str:
607    def createable_sql(self, expression: exp.Create, locations: defaultdict) -> str:
608        if expression.kind in self.ON_CLUSTER_TARGETS and locations.get(
609            exp.Properties.Location.POST_NAME
610        ):
611            this_name = self.sql(
612                expression.this if isinstance(expression.this, exp.Schema) else expression,
613                "this",
614            )
615            this_properties = " ".join(
616                [self.sql(prop) for prop in locations[exp.Properties.Location.POST_NAME]]
617            )
618            this_schema = self.schema_columns_sql(expression.this)
619            this_schema = f"{self.sep()}{this_schema}" if this_schema else ""
620
621            return f"{this_name}{self.sep()}{this_properties}{this_schema}"
622
623        return super().createable_sql(expression, locations)
def create_sql(self, expression: sqlglot.expressions.ddl.Create) -> str:
625    def create_sql(self, expression: exp.Create) -> str:
626        # The comment property comes last in CTAS statements, i.e. after the query
627        query = expression.expression
628        if isinstance(query, exp.Query):
629            comment_prop = expression.find(exp.SchemaCommentProperty)
630            if comment_prop:
631                comment_prop.pop()
632                query.replace(exp.paren(query))
633        else:
634            comment_prop = None
635
636        create_sql = super().create_sql(expression)
637
638        comment_sql = self.sql(comment_prop)
639        comment_sql = f" {comment_sql}" if comment_sql else ""
640
641        return f"{create_sql}{comment_sql}"
def prewhere_sql(self, expression: sqlglot.expressions.query.PreWhere) -> str:
643    def prewhere_sql(self, expression: exp.PreWhere) -> str:
644        this = self.indent(self.sql(expression, "this"))
645        return f"{self.seg('PREWHERE')}{self.sep()}{this}"
def indexcolumnconstraint_sql( self, expression: sqlglot.expressions.constraints.IndexColumnConstraint) -> str:
647    def indexcolumnconstraint_sql(self, expression: exp.IndexColumnConstraint) -> str:
648        this = self.sql(expression, "this")
649        this = f" {this}" if this else ""
650        expr = self.sql(expression, "expression")
651        expr = f" {expr}" if expr else ""
652        index_type = self.sql(expression, "index_type")
653        index_type = f" TYPE {index_type}" if index_type else ""
654        granularity = self.sql(expression, "granularity")
655        granularity = f" GRANULARITY {granularity}" if granularity else ""
656
657        return f"INDEX{this}{expr}{index_type}{granularity}"
def partition_sql(self, expression: sqlglot.expressions.query.Partition) -> str:
659    def partition_sql(self, expression: exp.Partition) -> str:
660        return f"PARTITION {self.expressions(expression, flat=True)}"
def partitionid_sql(self, expression: sqlglot.expressions.query.PartitionId) -> str:
662    def partitionid_sql(self, expression: exp.PartitionId) -> str:
663        return f"ID {self.sql(expression.this)}"
def replacepartition_sql(self, expression: sqlglot.expressions.query.ReplacePartition) -> str:
665    def replacepartition_sql(self, expression: exp.ReplacePartition) -> str:
666        return f"REPLACE {self.sql(expression.expression)} FROM {self.sql(expression, 'source')}"
def projectiondef_sql(self, expression: sqlglot.expressions.query.ProjectionDef) -> str:
668    def projectiondef_sql(self, expression: exp.ProjectionDef) -> str:
669        return f"PROJECTION {self.sql(expression.this)} {self.wrap(expression.expression)}"
def nestedjsonselect_sql(self, expression: sqlglot.expressions.core.NestedJSONSelect) -> str:
671    def nestedjsonselect_sql(self, expression: exp.NestedJSONSelect) -> str:
672        return f"{self.sql(expression, 'this')}.^{self.sql(expression, 'expression')}"
def is_sql(self, expression: sqlglot.expressions.core.Is) -> str:
674    def is_sql(self, expression: exp.Is) -> str:
675        is_sql = super().is_sql(expression)
676
677        if isinstance(expression.parent, exp.Not):
678            # value IS NOT NULL -> NOT (value IS NULL)
679            is_sql = self.wrap(is_sql)
680
681        return is_sql
def in_sql(self, expression: sqlglot.expressions.core.In) -> str:
683    def in_sql(self, expression: exp.In) -> str:
684        in_sql = super().in_sql(expression)
685
686        if isinstance(expression.parent, exp.Not) and expression.args.get("is_global"):
687            in_sql = in_sql.replace("GLOBAL IN", "GLOBAL NOT IN", 1)
688
689        return in_sql
def not_sql(self, expression: sqlglot.expressions.core.Not) -> str:
691    def not_sql(self, expression: exp.Not) -> str:
692        if isinstance(expression.this, exp.In):
693            if expression.this.args.get("is_global"):
694                # let `GLOBAL IN` child interpose `NOT`
695                return self.sql(expression, "this")
696
697            expression.set("this", exp.paren(expression.this, copy=False))
698
699        return super().not_sql(expression)
def values_sql( self, expression: sqlglot.expressions.query.Values, values_as_table: bool = True) -> str:
701    def values_sql(self, expression: exp.Values, values_as_table: bool = True) -> str:
702        # If the VALUES clause contains tuples of expressions, we need to treat it
703        # as a table since Clickhouse will automatically alias it as such.
704        alias = expression.args.get("alias")
705
706        if alias and alias.args.get("columns") and expression.expressions:
707            values = expression.expressions[0].expressions
708            values_as_table = any(isinstance(value, exp.Tuple) for value in values)
709        else:
710            values_as_table = True
711
712        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:
714    def timestamptrunc_sql(self, expression: exp.DateTrunc | exp.TimestampTrunc) -> str:
715        unit = weekstart_unit_to_str(self, expression)
716        # https://clickhouse.com/docs/whats-new/changelog/2023#improvement
717        if self.dialect.version < (23, 12) and unit and unit.is_string:
718            unit = exp.Literal.string(unit.name.lower())
719        return self.func("dateTrunc", unit, expression.this, expression.args.get("zone"))
def datetrunc_sql(self, expression: sqlglot.expressions.temporal.DateTrunc) -> str:
721    def datetrunc_sql(self, expression: exp.DateTrunc) -> str:
722        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
SEMI_ANTI_JOIN_WITH_SIDE
COMPUTED_COLUMN_WITH_TYPE
SUPPORTS_TABLE_COPY
TABLESAMPLE_WITH_METHOD
TABLESAMPLE_SEED_KEYWORD
HISTORICAL_DATA_POST_ALIAS
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
PIVOT_ALIAS_WITH_AS
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
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
timeserieskey_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
fromiso8601timestampnanos_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_name
weekstart_sql
chr_sql
block_sql
functionspecification_sql
storedprocedure_sql
ifblock_sql
whileblock_sql
execute_sql
executesql_sql
altermodifysqlsecurity_sql
usingproperty_sql
renameindex_sql