diff options
Diffstat (limited to '')
-rw-r--r-- | tests/dialects/test_presto.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/dialects/test_presto.py b/tests/dialects/test_presto.py index dbe3abc..a56d4a8 100644 --- a/tests/dialects/test_presto.py +++ b/tests/dialects/test_presto.py @@ -405,6 +405,14 @@ class TestPresto(Validator): ) self.validate_identity("DATE_ADD('DAY', 1, y)") + self.validate_all( + "SELECT DATE_ADD('MINUTE', 30, col)", + write={ + "presto": "SELECT DATE_ADD('MINUTE', 30, col)", + "trino": "SELECT DATE_ADD('MINUTE', 30, col)", + }, + ) + def test_ddl(self): self.validate_all( "CREATE TABLE test WITH (FORMAT = 'PARQUET') AS SELECT 1", |