Changeset: 8966fc2ced21 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/8966fc2ced21 Modified Files: sql/test/rel-optimizers/Tests/replicas-base.test sql/test/rel-optimizers/Tests/replicas-join.test Branch: default Log Message:
Changes remote name in tests diffs (69 lines): diff --git a/sql/test/rel-optimizers/Tests/replicas-base.test b/sql/test/rel-optimizers/Tests/replicas-base.test --- a/sql/test/rel-optimizers/Tests/replicas-base.test +++ b/sql/test/rel-optimizers/Tests/replicas-base.test @@ -5,10 +5,10 @@ statement ok insert into foo_local values (1, 'hello'), (2, 'world'), (3, '!!') statement ok -create remote table foo_r1 (n int, m text) on 'mapi:monetdb://localhost:50002/node2' +create remote table foo_r2 (n int, m text) on 'mapi:monetdb://localhost:50002/node2' statement ok -create remote table foo_r2 (n int, m text) on 'mapi:monetdb://localhost:50003/node3' +create remote table foo_r3 (n int, m text) on 'mapi:monetdb://localhost:50003/node3' statement ok @@ -18,10 +18,10 @@ statement ok insert into bar_local values (10, 'alice'), (2, 'bob'), (3, 'tom'), (4, 'jerry') statement ok -create remote table bar_r1 (n int, m text) on 'mapi:monetdb://localhost:50002/node2' +create remote table bar_r2 (n int, m text) on 'mapi:monetdb://localhost:50002/node2' statement ok -create remote table bar_r2 (n int, m text) on 'mapi:monetdb://localhost:50003/node3' +create remote table bar_r3 (n int, m text) on 'mapi:monetdb://localhost:50003/node3' statement ok create remote table buz_rmt (l int) on 'mapi:monetdb://localhost:50002/node2' diff --git a/sql/test/rel-optimizers/Tests/replicas-join.test b/sql/test/rel-optimizers/Tests/replicas-join.test --- a/sql/test/rel-optimizers/Tests/replicas-join.test +++ b/sql/test/rel-optimizers/Tests/replicas-join.test @@ -5,10 +5,10 @@ statement ok alter table foo_rpl add table foo_local statement ok -alter table foo_rpl add table foo_r1 +alter table foo_rpl add table foo_r2 statement ok -alter table foo_rpl add table foo_r2 +alter table foo_rpl add table foo_r3 statement ok create replica table bar_rpl (n int, m text) @@ -17,10 +17,10 @@ statement ok alter table bar_rpl add table bar_local statement ok -alter table bar_rpl add table bar_r1 +alter table bar_rpl add table bar_r2 statement ok -alter table bar_rpl add table bar_r2 +alter table bar_rpl add table bar_r3 query T nosort plan select * from foo_rpl @@ -50,8 +50,8 @@ table ( | project ( | | crossproduct ( | | | crossproduct ( -| | | | REMOTE("sys"."foo_r1") [ "foo_r1"."n" as "foo_rpl"."n", "foo_r1"."m" as "foo_rpl"."m", "foo_r1"."%TID%" NOT NULL UNIQUE as "foo_rpl"."%TID%" ], -| | | | REMOTE("sys"."bar_r1") [ "bar_r1"."n" as "bar_rpl"."n", "bar_r1"."m" as "bar_rpl"."m", "bar_r1"."%TID%" NOT NULL UNIQUE as "bar_rpl"."%TID%" ] +| | | | REMOTE("sys"."foo_r2") [ "foo_r2"."n" as "foo_rpl"."n", "foo_r2"."m" as "foo_rpl"."m", "foo_r2"."%TID%" NOT NULL UNIQUE as "foo_rpl"."%TID%" ], +| | | | REMOTE("sys"."bar_r2") [ "bar_r2"."n" as "bar_rpl"."n", "bar_r2"."m" as "bar_rpl"."m", "bar_r2"."%TID%" NOT NULL UNIQUE as "bar_rpl"."%TID%" ] | | | ) [ ], | | | REMOTE("sys"."buz_rmt") [ "buz_rmt"."l" ] | | ) [ ] _______________________________________________ checkin-list mailing list -- checkin-list@monetdb.org To unsubscribe send an email to checkin-list-le...@monetdb.org