Hi everyone,
There is a table sys_language_l10nmgr_language_restricted_record_mm without a primary/unique key and such tables are not supported by mysql group replication. Could I ask you, devs, add/change (whatever you think is better) the table definition to create missing unique index?
currently, the table structure is:
CREATE TABLE `sys_language_l10nmgr_language_restricted_record_mm` (
`uid_local` int(11) NOT NULL DEFAULT '0',
`uid_foreign` int(11) NOT NULL DEFAULT '0',
`tablenames` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`fieldname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`sorting` int(11) NOT NULL DEFAULT '0',
`sorting_foreign` int(11) NOT NULL DEFAULT '0',
KEY `uid_local_foreign` (`uid_local`,`uid_foreign`),
KEY `uid_foreign_tablefield` (`uid_foreign`,`tablenames`(40),`fieldname`(3),`sorting_foreign`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;