diff options
Diffstat (limited to 'storage/perfschema/table_setup_consumers.cc')
-rw-r--r-- | storage/perfschema/table_setup_consumers.cc | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/storage/perfschema/table_setup_consumers.cc b/storage/perfschema/table_setup_consumers.cc index 7f5cbbce807..3125e63a30f 100644 --- a/storage/perfschema/table_setup_consumers.cc +++ b/storage/perfschema/table_setup_consumers.cc @@ -1,4 +1,4 @@ -/* Copyright (c) 2008, 2021, Oracle and/or its affiliates. +/* Copyright (c) 2008, 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, @@ -149,6 +149,11 @@ TABLE_FIELD_DEF table_setup_consumers::m_field_def= { 2, field_types }; +PFS_engine_table_share_state +table_setup_consumers::m_share_state = { + false /* m_checked */ +}; + PFS_engine_table_share table_setup_consumers::m_share= { @@ -161,8 +166,9 @@ table_setup_consumers::m_share= sizeof(PFS_simple_index), /* ref length */ &m_table_lock, &m_field_def, - false, /* checked */ - false /* perpetual */ + false, /* m_perpetual */ + false, /* m_optional */ + &m_share_state }; PFS_engine_table* table_setup_consumers::create(void) |