1
0
Fork 0

Adding upstream version 26.15.0.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-04-21 09:50:00 +02:00
parent dfe1cec38a
commit 4bfa0e7e53
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
58 changed files with 4878 additions and 4677 deletions

View file

@ -1933,7 +1933,7 @@ class TransformColumnConstraint(ColumnConstraintKind):
class PrimaryKeyColumnConstraint(ColumnConstraintKind):
arg_types = {"desc": False}
arg_types = {"desc": False, "options": False}
class TitleColumnConstraint(ColumnConstraintKind):
@ -1941,7 +1941,13 @@ class TitleColumnConstraint(ColumnConstraintKind):
class UniqueColumnConstraint(ColumnConstraintKind):
arg_types = {"this": False, "index_type": False, "on_conflict": False, "nulls": False}
arg_types = {
"this": False,
"index_type": False,
"on_conflict": False,
"nulls": False,
"options": False,
}
class UppercaseColumnConstraint(ColumnConstraintKind):
@ -2140,6 +2146,7 @@ class ForeignKey(Expression):
"reference": False,
"delete": False,
"update": False,
"options": False,
}
@ -2917,6 +2924,14 @@ class PartitionedByProperty(Property):
arg_types = {"this": True}
class PartitionedByBucket(Property):
arg_types = {"this": True, "expression": True}
class PartitionByTruncate(Property):
arg_types = {"this": True, "expression": True}
# https://docs.starrocks.io/docs/sql-reference/sql-statements/table_bucket_part_index/CREATE_TABLE/
class PartitionByRangeProperty(Property):
arg_types = {"partition_expressions": True, "create_expressions": True}