Skip to content

Commit

Permalink
Add test for bug #7480
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdvm committed Mar 20, 2024
1 parent 3d00921 commit 534edf8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions sql/test/BugTracker-2024/Tests/All
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ rel2bin_join-Bug-7476
atom_cmp-Bug-7477
exp_equal-Bug-7478
exp_ref-Bug-7479
get_rel_count-Bug-7480
15 changes: 15 additions & 0 deletions sql/test/BugTracker-2024/Tests/get_rel_count-Bug-7480.test
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
query I nosort
SELECT CASE WHEN ( SELECT 2 WHERE FALSE ) > ANY ( 1 ) THEN 1 END
----
NULL

query I nosort
SELECT NULL GROUP BY 1
----
NULL

skipif knownfail
query I nosort
SELECT CASE WHEN ( SELECT 2 WHERE FALSE ) > ANY ( 1 ) THEN 1 END GROUP BY 1
----
NULL

0 comments on commit 534edf8

Please sign in to comment.