You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
396 B
11 lines
396 B
create table mysql.gtid_executed
|
|
(
|
|
source_uuid char(36) not null comment 'uuid of the source where the transaction was originally executed.',
|
|
interval_start bigint not null comment 'First number of interval.',
|
|
interval_end bigint not null comment 'Last number of interval.',
|
|
primary key (source_uuid, interval_start)
|
|
)
|
|
row_format = DYNAMIC
|
|
stats_persistent = 0;
|
|
|