Adding upstream version 26.9.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
4c394df415
commit
412e82cbc6
43 changed files with 27039 additions and 26675 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue