1
0
Fork 0

Adding upstream version 26.9.0.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-03-09 08:41:47 +01:00
parent 4c394df415
commit 412e82cbc6
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
43 changed files with 27039 additions and 26675 deletions

View file

@ -3025,6 +3025,10 @@ class StabilityProperty(Property):
arg_types = {"this": True}
class StorageHandlerProperty(Property):
arg_types = {"this": True}
class TemporaryProperty(Property):
arg_types = {"this": False}
@ -3093,6 +3097,10 @@ class IncludeProperty(Property):
arg_types = {"this": True, "alias": False, "column_def": False}
class ForceProperty(Property):
arg_types = {}
class Properties(Expression):
arg_types = {"expressions": True}
@ -3251,6 +3259,11 @@ class HistoricalData(Expression):
arg_types = {"this": True, "kind": True, "expression": True}
# https://docs.snowflake.com/en/sql-reference/sql/put
class Put(Expression):
arg_types = {"this": True, "target": True, "properties": False}
class Table(Expression):
arg_types = {
"this": False,
@ -4401,6 +4414,7 @@ class DataType(Expression):
BIGSERIAL = auto()
BINARY = auto()
BIT = auto()
BLOB = auto()
BOOLEAN = auto()
BPCHAR = auto()
CHAR = auto()