summaryrefslogtreecommitdiff
path: root/storage/perfschema/table_replication_applier_configuration.cc
diff options
context:
space:
mode:
Diffstat (limited to 'storage/perfschema/table_replication_applier_configuration.cc')
-rw-r--r--storage/perfschema/table_replication_applier_configuration.cc11
1 files changed, 9 insertions, 2 deletions
diff --git a/storage/perfschema/table_replication_applier_configuration.cc b/storage/perfschema/table_replication_applier_configuration.cc
index c9b0163bc76..ce66fa9fecd 100644
--- a/storage/perfschema/table_replication_applier_configuration.cc
+++ b/storage/perfschema/table_replication_applier_configuration.cc
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2013, 2021, Oracle and/or its affiliates.
+ Copyright (c) 2013, 2022, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
@@ -40,6 +40,11 @@
THR_LOCK table_replication_applier_configuration::m_table_lock;
+PFS_engine_table_share_state
+table_replication_applier_configuration::m_share_state = {
+ false /* m_checked */
+};
+
PFS_engine_table_share
table_replication_applier_configuration::m_share=
{
@@ -54,7 +59,9 @@ table_replication_applier_configuration::m_share=
{ C_STRING_WITH_LEN("CREATE TABLE replication_applier_configuration("
"CHANNEL_NAME VARCHAR(256) collate utf8_general_ci not null comment 'Replication channel name.',"
"DESIRED_DELAY INTEGER not null comment 'Target number of seconds the replica should be delayed to the master.')") },
- false /* perpetual */
+ false, /* m_perpetual */
+ false, /* m_optional */
+ &m_share_state
};
PFS_engine_table* table_replication_applier_configuration::create(void)