Changeset: 765999fcabf9 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=765999fcabf9 Modified Files: sql/test/BugTracker-2014/Tests/current_timestamp.Bug-3427.sql Branch: Jan2014 Log Message:
Run test inside a transaction. diffs (15 lines): diff --git a/sql/test/BugTracker-2014/Tests/current_timestamp.Bug-3427.sql b/sql/test/BugTracker-2014/Tests/current_timestamp.Bug-3427.sql --- a/sql/test/BugTracker-2014/Tests/current_timestamp.Bug-3427.sql +++ b/sql/test/BugTracker-2014/Tests/current_timestamp.Bug-3427.sql @@ -1,3 +1,5 @@ +start transaction; + create table x( i integer, t timestamp, @@ -33,3 +35,5 @@ create table d(t timestamp default curre drop table d; create table d(t time default current_timestamp, i integer); drop table d; + +rollback; _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
