mysql-5.7.39

This commit is contained in:
Oleksandr Byelkin 2022-07-29 14:48:01 +02:00
commit 61d08f7427
401 changed files with 4852 additions and 527 deletions

View file

@ -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,
@ -79,6 +79,11 @@ TABLE_FIELD_DEF
table_events_waits_summary_by_instance::m_field_def=
{ 7, ews_by_instance_field_types };
PFS_engine_table_share_state
table_events_waits_summary_by_instance::m_share_state = {
false /* m_checked */
};
PFS_engine_table_share
table_events_waits_summary_by_instance::m_share=
{
@ -91,8 +96,9 @@ table_events_waits_summary_by_instance::m_share=
sizeof(pos_all_instr),
&m_table_lock,
&m_field_def,
false, /* checked */
false /* perpetual */
false, /* m_perpetual */
false, /* m_optional */
&m_share_state
};
PFS_engine_table* table_events_waits_summary_by_instance::create(void)