Changeset: 6f00156684e2 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/6f00156684e2 Added Files: sql/test/BugTracker-2025/Tests/7621_count_case_crash.test Modified Files: sql/test/BugTracker-2025/Tests/All Branch: Mar2025 Log Message:
added test for bug #7621 diffs (28 lines): diff --git a/sql/test/BugTracker-2025/Tests/7621_count_case_crash.test b/sql/test/BugTracker-2025/Tests/7621_count_case_crash.test new file mode 100644 --- /dev/null +++ b/sql/test/BugTracker-2025/Tests/7621_count_case_crash.test @@ -0,0 +1,15 @@ +statement ok +create table count_case_crash(id int, key int) + +query IT +SELECT count(*), + CASE WHEN now() < (now() + interval '1' day) THEN + 'yes' + ELSE + 'no' + END AS name +FROM + count_case_crash +---- +0 +yes diff --git a/sql/test/BugTracker-2025/Tests/All b/sql/test/BugTracker-2025/Tests/All --- a/sql/test/BugTracker-2025/Tests/All +++ b/sql/test/BugTracker-2025/Tests/All @@ -2,3 +2,4 @@ 7611_multiple_unnd_constraints 7614_join_reordering 7615_join_reordering_2 7616_join_reordering_3 +7621_count_case_crash _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
