diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-23 11:12:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-23 11:12:29 +0000 |
commit | 1913a612f455e5bade68999ff147181bc694e749 (patch) | |
tree | 594899039b2f7696a9460d139240a34ac30ca76c /tests/dialects/test_spark.py | |
parent | Releasing debian version 25.5.1-1. (diff) | |
download | sqlglot-1913a612f455e5bade68999ff147181bc694e749.tar.xz sqlglot-1913a612f455e5bade68999ff147181bc694e749.zip |
Merging upstream version 25.6.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/dialects/test_spark.py')
-rw-r--r-- | tests/dialects/test_spark.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/dialects/test_spark.py b/tests/dialects/test_spark.py index 4e62b32..fc3146f 100644 --- a/tests/dialects/test_spark.py +++ b/tests/dialects/test_spark.py @@ -684,6 +684,8 @@ TBLPROPERTIES ( write={ "spark": "SELECT DATE_ADD(MONTH, 20, col)", "databricks": "SELECT DATE_ADD(MONTH, 20, col)", + "presto": "SELECT DATE_ADD('MONTH', 20, col)", + "trino": "SELECT DATE_ADD('MONTH', 20, col)", }, ) |