diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-02-16 05:45:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-02-16 05:45:49 +0000 |
commit | 87bb420e43bf31021b090be98143a32042255a46 (patch) | |
tree | f68baf119ccffb6ebc64ba066af1491ddcb0f121 /tests/test_transpile.py | |
parent | Adding upstream version 21.0.2. (diff) | |
download | sqlglot-upstream/21.1.1.tar.xz sqlglot-upstream/21.1.1.zip |
Adding upstream version 21.1.1.upstream/21.1.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/test_transpile.py')
-rw-r--r-- | tests/test_transpile.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_transpile.py b/tests/test_transpile.py index fdbf2e0..99b3fac 100644 --- a/tests/test_transpile.py +++ b/tests/test_transpile.py @@ -554,11 +554,12 @@ FROM base""", self.validate( "WITH A(filter) AS (VALUES 1, 2, 3) SELECT * FROM A WHERE filter >= 2", "WITH A(filter) AS (VALUES (1), (2), (3)) SELECT * FROM A WHERE filter >= 2", + read="presto", ) self.validate( "SELECT BOOL_OR(a > 10) FROM (VALUES 1, 2, 15) AS T(a)", "SELECT BOOL_OR(a > 10) FROM (VALUES (1), (2), (15)) AS T(a)", - write="presto", + read="presto", ) def test_alter(self): |