diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 02:50:25 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 02:50:25 +0000 |
commit | cf49728f719975144a958f23ba5f3336fb81ae55 (patch) | |
tree | 78aa5446e86cc5623808508ee167c9a476754939 /tests/dialects/test_prql.py | |
parent | Releasing debian version 23.10.0-1. (diff) | |
download | sqlglot-cf49728f719975144a958f23ba5f3336fb81ae55.tar.xz sqlglot-cf49728f719975144a958f23ba5f3336fb81ae55.zip |
Merging upstream version 23.12.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | tests/dialects/test_prql.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/dialects/test_prql.py b/tests/dialects/test_prql.py index 69e2e28..1a0eec2 100644 --- a/tests/dialects/test_prql.py +++ b/tests/dialects/test_prql.py @@ -58,3 +58,11 @@ class TestPRQL(Validator): self.validate_identity( "from x intersect y", "SELECT * FROM x INTERSECT ALL SELECT * FROM y" ) + self.validate_identity( + "from x filter a == null filter null != b", + "SELECT * FROM x WHERE a IS NULL AND NOT b IS NULL", + ) + self.validate_identity( + "from x filter (a > 1 || null != b || c != null)", + "SELECT * FROM x WHERE (a > 1 OR NOT b IS NULL OR NOT c IS NULL)", + ) |