Changeset: b6ade854eb09 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/b6ade854eb09 Modified Files: sql/test/BugTracker-2022/Tests/All Branch: Sep2022 Log Message:
Merge with Jan2022 branch. diffs (33 lines): diff --git a/sql/test/BugTracker-2022/Tests/All b/sql/test/BugTracker-2022/Tests/All --- a/sql/test/BugTracker-2022/Tests/All +++ b/sql/test/BugTracker-2022/Tests/All @@ -21,3 +21,4 @@ values.Bug-7336 temp-table-index.Bug rerun-temp-table-index-crashes-server.Bug rerun-temp-table-index-fails-to-restart-server.Bug +distinct-crash.Bug-7342 diff --git a/sql/test/BugTracker-2022/Tests/distinct-crash.Bug-7342.test b/sql/test/BugTracker-2022/Tests/distinct-crash.Bug-7342.test new file mode 100644 --- /dev/null +++ b/sql/test/BugTracker-2022/Tests/distinct-crash.Bug-7342.test @@ -0,0 +1,20 @@ +statement ok +create table foo (d double) + +statement ok +insert into foo values(10.0),(23.456),(3242.435) + +query R rowsort +select d+10 as column2 from (select d, d + 10 as column1 from foo) tfoo +---- +20.000 +3252.435 +33.456 + +query R rowsort +select distinct d+10 as column2 from (select d, d + 10 as column1 from foo) tfoo +---- +20.000 +3252.435 +33.456 + _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
