Adding upstream version 26.15.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
dfe1cec38a
commit
4bfa0e7e53
58 changed files with 4878 additions and 4677 deletions
|
@ -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}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue