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.
17 lines
935 B
17 lines
935 B
create table mysql.replication_group_member_actions
|
|
(
|
|
name char(255) charset ascii not null comment 'The action name.',
|
|
event char(64) charset ascii not null comment 'The event that will trigger the action.',
|
|
enabled tinyint(1) not null comment 'Whether the action is enabled.',
|
|
type char(64) charset ascii not null comment 'The action type.',
|
|
priority tinyint unsigned not null comment 'The order on which the action will be run, value between 1 and 100, lower values first.',
|
|
error_handling char(64) charset ascii not null comment 'On errors during the action will be handled: IGNORE, CRITICAL.',
|
|
primary key (name, event)
|
|
)
|
|
comment 'The member actions configuration.' row_format = DYNAMIC
|
|
stats_persistent = 0;
|
|
|
|
create index event
|
|
on mysql.replication_group_member_actions (event);
|
|
|