summaryrefslogtreecommitdiff
path: root/storage/perfschema/table_replication_connection_configuration.cc
diff options
context:
space:
mode:
Diffstat (limited to 'storage/perfschema/table_replication_connection_configuration.cc')
-rw-r--r--storage/perfschema/table_replication_connection_configuration.cc12
1 files changed, 9 insertions, 3 deletions
diff --git a/storage/perfschema/table_replication_connection_configuration.cc b/storage/perfschema/table_replication_connection_configuration.cc
index bcb07bf5b79..66013118e6a 100644
--- a/storage/perfschema/table_replication_connection_configuration.cc
+++ b/storage/perfschema/table_replication_connection_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,
@@ -145,6 +145,11 @@ TABLE_FIELD_DEF
table_replication_connection_configuration::m_field_def=
{ 19, field_types };
+PFS_engine_table_share_state
+table_replication_connection_configuration::m_share_state = {
+ false /* m_checked */
+};
+
PFS_engine_table_share
table_replication_connection_configuration::m_share=
{
@@ -157,8 +162,9 @@ table_replication_connection_configuration::m_share=
sizeof(pos_t), /* ref length */
&m_table_lock,
&m_field_def,
- false, /* checked */
- false /* perpetual */
+ false, /* m_perpetual */
+ false, /* m_optional */
+ &m_share_state
};