diff options
Diffstat (limited to 'tests/dialects/test_redshift.py')
-rw-r--r-- | tests/dialects/test_redshift.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/dialects/test_redshift.py b/tests/dialects/test_redshift.py index e20661e..fa4d422 100644 --- a/tests/dialects/test_redshift.py +++ b/tests/dialects/test_redshift.py @@ -47,7 +47,7 @@ class TestRedshift(Validator): self.validate_all( 'SELECT tablename, "column" FROM pg_table_def WHERE "column" LIKE \'%start\\_%\' LIMIT 5', write={ - "redshift": 'SELECT tablename, "column" FROM pg_table_def WHERE "column" LIKE \'%start\\\\_%\' LIMIT 5' + "redshift": 'SELECT tablename, "column" FROM pg_table_def WHERE "column" LIKE \'%start\\_%\' LIMIT 5' }, ) self.validate_all( @@ -72,6 +72,13 @@ class TestRedshift(Validator): "postgres": "COALESCE(a, b, c, d)", }, ) + self.validate_all( + "DATEDIFF(d, a, b)", + write={ + "redshift": "DATEDIFF(d, a, b)", + "presto": "DATE_DIFF(d, a, b)", + }, + ) def test_identity(self): self.validate_identity( |