Adding upstream version 10.0.8.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
1e860cc299
commit
87cdb8246e
67 changed files with 2461 additions and 840 deletions
|
@ -169,6 +169,17 @@ class TestSnowflake(Validator):
|
|||
"snowflake": "SELECT a FROM test AS unpivot",
|
||||
},
|
||||
)
|
||||
self.validate_all(
|
||||
"trim(date_column, 'UTC')",
|
||||
write={
|
||||
"snowflake": "TRIM(date_column, 'UTC')",
|
||||
"postgres": "TRIM('UTC' FROM date_column)",
|
||||
},
|
||||
)
|
||||
self.validate_all(
|
||||
"trim(date_column)",
|
||||
write={"snowflake": "TRIM(date_column)"},
|
||||
)
|
||||
|
||||
def test_null_treatment(self):
|
||||
self.validate_all(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue