Add a double-multi-master replication makedelta test.
Consider this:
* You have two databases, A and B, with multi-master replication between all
of their tables.
* You have a third database, C that needs to be the target of replication for
just one of those tables, "widgets".
* If A goes down, C stil needs the widgets updated on B.
Solution:
* Add a relgroup with just "widgets"
* Enalbe "makedelta" on "widgets"
* Add a dbgroup with A:source, B:source, C:target
* Create a sync with that dbgroup and the widgets-only relgroup.
This is effectively the case these new tests demonstrate. However, it means
that there are *two* multi-master replication syncs between A and B for the
"widgets" table. This is a bit of a drag, as it means that everything will be
synced twice.
But not only that, if A goes down, will the sync with C as the target succeed
or fail?