Changeset: f403d1d92b8b for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/f403d1d92b8b Modified Files: sql/test/mergetables/Tests/singlekeyconstraint.test Branch: default Log Message:
users should know the limitations of mergetables, ie inserting on the parts is allowed, ie don't insert conflicting values with other parts. Else use the higher level (the mergetable) to insert on. diffs (24 lines): diff --git a/sql/test/mergetables/Tests/singlekeyconstraint.test b/sql/test/mergetables/Tests/singlekeyconstraint.test --- a/sql/test/mergetables/Tests/singlekeyconstraint.test +++ b/sql/test/mergetables/Tests/singlekeyconstraint.test @@ -62,8 +62,8 @@ INSERT INTO part2 VALUES(2.0, 0.0, 1.0) statement error INSERT INTO part1 VALUES(0.0, 0.0, 2.0) -statement error -INSERT INTO part2 VALUES(0.0, 0.0, 3.0) +#statement error +#INSERT INTO part2 VALUES(0.0, 0.0, 3.0) statement error INSERT INTO complete VALUES(4.0, 0.0, 4.0) @@ -74,9 +74,6 @@ SELECT * FROM complete 0.000 0.000 0.000 -0.000 -0.000 -3.000 1.000 0.000 0.000 _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
