Changeset: 692e88e3b35c for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/692e88e3b35c Added Files: sql/test/BugTracker-2024/Tests/is-col-uniq-crash-7441.test Modified Files: sql/test/BugTracker-2024/Tests/All Branch: Dec2023 Log Message:
Fixed. Test for GH issue #7441. diffs (21 lines): diff --git a/sql/test/BugTracker-2024/Tests/All b/sql/test/BugTracker-2024/Tests/All --- a/sql/test/BugTracker-2024/Tests/All +++ b/sql/test/BugTracker-2024/Tests/All @@ -6,3 +6,4 @@ create-index-query-issue-7430 alloc-overflow-7432 gc-col-crash-7440 greatest-as-colname-7444 +is-col-uniq-crash-7441 diff --git a/sql/test/BugTracker-2024/Tests/is-col-uniq-crash-7441.test b/sql/test/BugTracker-2024/Tests/is-col-uniq-crash-7441.test new file mode 100644 --- /dev/null +++ b/sql/test/BugTracker-2024/Tests/is-col-uniq-crash-7441.test @@ -0,0 +1,8 @@ +statement ok +CREATE TABLE v0 (v1 integer); + +statement ok +SELECT 1 IS NOT NULL FROM v0 ORDER BY AVG(max(286)) OVER (ORDER BY 111 NULLS FIRST) NULLS LAST; + +statement ok +SELECT DISTINCT * FROM v0 AS cor0 WHERE (2) IN (v1 / - v1, v1); _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
