Changeset: 9fa129eaa0d9 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=9fa129eaa0d9 Modified Files: sql/test/BugTracker-2014/Tests/current_timestamp.Bug-3427.sql Branch: Jan2014 Log Message:
current_timestamp.Bug-3427: ensure deterministic test result (otherwise, current output will always differ from (to be provided) stable output) diffs (21 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 @@ -6,7 +6,7 @@ td timestamp default now(), tc timestamp default current_timestamp); insert into x(i,t) values(0,now()); -select * from x; +select i, tn, td - t, tc - t from x; drop table x; create table x( @@ -17,7 +17,7 @@ td time default now(), tc time default current_time); insert into x(i,t) values(0,now()); -select * from x; +select i, tn, td - t, tc - t from x; drop table x; declare t timestamp; _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
