Changes between Version 3 and Version 4 of GROUPReplicate2


Ignore:
Timestamp:
06/14/22 09:11:01 (2 years ago)
Author:
krit
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GROUPReplicate2

    v3 v4  
    7272mysql> SELECT * FROM performance_schema.replication_group_members;
    7373}}}
     74
     7510. create database and table need ref [https://lefred.be/content/mysql-group-replication-and-table-design/ here]
     76 * InnoDB Storage Engine: data must be stored in the InnoDB transactional storage engine.
     77 * Primary Keys: every table that is to be replicated by the group must have an explicit primary key defined.
     78
     79{{{
     80mysql> create table test_tbl_nopk_uniq_notnull (id int not null unique key, name varchar(10));
     81mysql> insert into test_tbl_nopk_uniq_notnull values (1,'lefred');
     82Query OK, 1 row affected (0.01 sec)
     83}}}