1
0
Fork 0

Adding upstream version 26.12.1.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-04-06 10:16:57 +02:00
parent 4118582692
commit 539faf8d40
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
45 changed files with 49860 additions and 49289 deletions

View file

@ -62,6 +62,9 @@ def _schema_sql(self: Presto.Generator, expression: exp.Schema) -> str:
if expression.parent:
for schema in expression.parent.find_all(exp.Schema):
if schema is expression:
continue
column_defs = schema.find_all(exp.ColumnDef)
if column_defs and isinstance(schema.parent, exp.Property):
expression.expressions.extend(column_defs)