diff options
Diffstat (limited to 'tests/dialects/test_presto.py')
-rw-r--r-- | tests/dialects/test_presto.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dialects/test_presto.py b/tests/dialects/test_presto.py index e1d8c06..4bafc08 100644 --- a/tests/dialects/test_presto.py +++ b/tests/dialects/test_presto.py @@ -871,7 +871,7 @@ class TestPresto(Validator): "SELECT ARRAY_SORT(x, (left, right) -> -1)", write={ "duckdb": "SELECT ARRAY_SORT(x)", - "presto": "SELECT ARRAY_SORT(x, (left, right) -> -1)", + "presto": 'SELECT ARRAY_SORT(x, ("left", "right") -> -1)', "hive": "SELECT SORT_ARRAY(x)", "spark": "SELECT ARRAY_SORT(x, (left, right) -> -1)", }, |