summaryrefslogtreecommitdiff
path: root/storage/perfschema/table_setup_actors.cc
diff options
context:
space:
mode:
Diffstat (limited to 'storage/perfschema/table_setup_actors.cc')
-rw-r--r--storage/perfschema/table_setup_actors.cc12
1 files changed, 9 insertions, 3 deletions
diff --git a/storage/perfschema/table_setup_actors.cc b/storage/perfschema/table_setup_actors.cc
index f1bc33d6e85..8280781eec2 100644
--- a/storage/perfschema/table_setup_actors.cc
+++ b/storage/perfschema/table_setup_actors.cc
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010, 2021, Oracle and/or its affiliates.
+/* Copyright (c) 2010, 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,
@@ -71,6 +71,11 @@ TABLE_FIELD_DEF
table_setup_actors::m_field_def=
{ 5, field_types };
+PFS_engine_table_share_state
+table_setup_actors::m_share_state = {
+ false /* m_checked */
+};
+
PFS_engine_table_share
table_setup_actors::m_share=
{
@@ -83,8 +88,9 @@ table_setup_actors::m_share=
sizeof(PFS_simple_index),
&m_table_lock,
&m_field_def,
- false, /* checked */
- false /* perpetual */
+ false, /* m_perpetual */
+ false, /* m_optional */
+ &m_share_state
};
PFS_engine_table* table_setup_actors::create()