Adding upstream version 10.5.2.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
63044b3f6c
commit
b97d49f611
58 changed files with 1480 additions and 383 deletions
|
@ -523,3 +523,33 @@ FROM persons AS p, LATERAL FLATTEN(input => p.c, path => 'contact') AS f, LATERA
|
|||
"spark": "SELECT `c0`, `c1` FROM (VALUES (1, 2), (3, 4)) AS `t0`(`c0`, `c1`)",
|
||||
},
|
||||
)
|
||||
|
||||
def test_describe_table(self):
|
||||
self.validate_all(
|
||||
"DESCRIBE TABLE db.table",
|
||||
write={
|
||||
"snowflake": "DESCRIBE TABLE db.table",
|
||||
"spark": "DESCRIBE db.table",
|
||||
},
|
||||
)
|
||||
self.validate_all(
|
||||
"DESCRIBE db.table",
|
||||
write={
|
||||
"snowflake": "DESCRIBE TABLE db.table",
|
||||
"spark": "DESCRIBE db.table",
|
||||
},
|
||||
)
|
||||
self.validate_all(
|
||||
"DESC TABLE db.table",
|
||||
write={
|
||||
"snowflake": "DESCRIBE TABLE db.table",
|
||||
"spark": "DESCRIBE db.table",
|
||||
},
|
||||
)
|
||||
self.validate_all(
|
||||
"DESC VIEW db.table",
|
||||
write={
|
||||
"snowflake": "DESCRIBE VIEW db.table",
|
||||
"spark": "DESCRIBE db.table",
|
||||
},
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue