Hello ZhangHuangbin's
Can you tell me what are the implication of modifying the iredadmin tables, so they are compliant with group replication?
These are the tables that need a primary key to be able to work with group replication.
iredadmin.deleted_mailboxes
iredadmin.log
iredadmin.updatelog
ALTER TABLE `iredadmin`.`deleted_mailboxes`
ADD PRIMARY KEY (`id`);
;
ALTER TABLE `iredadmin`.`log`
ADD PRIMARY KEY (`id`);
;
ALTER TABLE `iredadmin`.`updatelog`
ADD PRIMARY KEY (`id`);
;
More databases to follow