Changeset: dd5e4a1e1ce0 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/dd5e4a1e1ce0 Modified Files: sql/test/miscellaneous/Tests/simple_selects.test Branch: Jul2021 Log Message:
This is a bad test that I will fix later. Dropping a column of a table then rollback the transaction and no table drop causes a memory leak diffs (25 lines): diff --git a/sql/test/miscellaneous/Tests/simple_selects.test b/sql/test/miscellaneous/Tests/simple_selects.test --- a/sql/test/miscellaneous/Tests/simple_selects.test +++ b/sql/test/miscellaneous/Tests/simple_selects.test @@ -816,4 +816,21 @@ create function "😀😀😀😀😀😀😀😀😀😀😀😀😀😀😀😀"() returns int return 3 statement error select "😀😀😀😀😀😀😀😀😀😀😀😀😀😀😀😀"() +statement ok +create table thisnamewontconflict(y int, z int) +statement ok rowcount 3 +insert into thisnamewontconflict values (1, 2), (9, 8), (5, 4) + +statement ok +start transaction + +statement ok +alter table thisnamewontconflict drop column y + +statement ok +rollback + +# when the leak gets fixed the table can be dropped +#statement ok +#drop table thisnamewontconflict _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
