mariadb/storage/perfschema
Sujatha fe9450676f MDEV-25502: rpl.rpl_perfschema_applier_status_by_worker failed in bb with: Test assertion failed
Problem:
=======
Test fails with 3 different symptoms
connection slave;
Assertion text: 'Last_Seen_Transaction should show .'
Assertion condition: '"0-1-1" = ""'
Assertion condition, interpolated: '"0-1-1" = ""'
Assertion result: '0'

connection slave;
Assertion text: 'Value returned by SSS and PS table for Last_Error_Number
                 should be same.'
Assertion condition: '"1146" = "0"'
Assertion condition, interpolated: '"1146" = "0"'
Assertion result: '0'

connection slave;
Assertion text: 'Value returned by PS table for worker_idle_time should be
                >= 1'
Assertion condition: '"0" >= "1"'
Assertion condition, interpolated: '"0" >= "1"'
Assertion result: '0'

Fix1:
====
Performance schema table's Last_Seen_Transaction is compared with 'SELECT
gtid_slave_pos'. Since DDLs are not transactional changes to user table and
gtid_slave_pos table are not guaranteed to be synchronous. To fix the
issue Gtid_IO_Pos value from SHOW SLAVE STATUS command will be used to
verify the correctness of Performance schema specific
Last_Seen_Transaction.

Fix2:
====
On error worker thread information is stored as part of backup pool. Access
to this backup pool should be protected by 'LOCK_rpl_thread_pool' mutex so
that simultaneous START SLAVE cannot destroy the backup pool, while it is
being queried by performance schema.

Fix3:
====
When a worker is waiting for events if performance schema table is queried,
at present it just returns the difference between current_time and
start_time.  This is incorrect. It should be worker_idle_time +
(current_time - start_time).

For example a worker thread was idle for 10 seconds and then it got events
to process. Upon completion it goes to idle state, now if the pfs table is
queried it should return current_idle time  + worker_idle_time.
2021-05-13 10:34:32 +05:30
..
unittest cleanup: pass trxid by value 2020-03-10 19:24:23 +01:00
CMakeLists.txt Merge 10.5 into 10.6 2021-05-07 15:00:27 +03:00
cursor_by_account.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
cursor_by_account.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
cursor_by_host.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
cursor_by_host.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
cursor_by_thread.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
cursor_by_thread.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
cursor_by_thread_connect_attr.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
cursor_by_thread_connect_attr.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
cursor_by_user.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
cursor_by_user.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
ha_perfschema.cc Merge branch 'merge-perfschema-5.7' into 10.5 2020-08-07 13:41:39 +02:00
ha_perfschema.h Added 'final' to some classes to improve generated code 2020-08-04 17:27:32 +02:00
my_thread.h MDEV-23091: perfschema Add support for OpenBSD's getthrid() to retrieve the thread id 2020-08-28 15:03:43 +10:00
mysqld_thd_manager.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
mysqld_thd_manager.h perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
pfs.cc fix perfschema for pool-of-threads 2020-03-10 19:24:24 +01:00
pfs.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_account.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
pfs_account.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_atomic.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_autosize.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_buffer_container.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_buffer_container.h perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
pfs_builtin_memory.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
pfs_builtin_memory.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_column_types.h perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
pfs_column_values.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_column_values.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_con_slice.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_con_slice.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_config.h.cmake MDEV-23091: perfschema Add support for OpenBSD's getthrid() to retrieve the thread id 2020-08-28 15:03:43 +10:00
pfs_defaults.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_defaults.h Merge branch 'merge-perfschema-5.6' into 10.1 2020-01-19 13:11:45 +01:00
pfs_digest.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_digest.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_engine_table.cc Merge 10.5 into 10.6 2021-04-22 08:43:03 +03:00
pfs_engine_table.h Cleanup: constexpr PFS_table_context::m_word_size 2021-04-21 12:44:23 +03:00
pfs_events.h perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
pfs_events_stages.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_events_stages.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_events_statements.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_events_statements.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_events_transactions.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_events_transactions.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_events_waits.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_events_waits.h perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
pfs_global.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_global.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_host.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_host.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_instr.cc Merge remote-tracking branch 'origin/10.4' into 10.5 2021-02-26 13:23:13 +11:00
pfs_instr.h Merge remote-tracking branch 'origin/10.4' into 10.5 2021-02-26 13:23:13 +11:00
pfs_instr_class.cc Merge 10.4 into 10.5 2020-03-17 07:58:41 +02:00
pfs_instr_class.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_lock.h perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
pfs_memory.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_memory.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_prepared_stmt.cc cleanup: remove unused argument 2020-03-10 19:24:23 +01:00
pfs_prepared_stmt.h Merge branch bb-10.4-release into bb-10.5-release 2021-05-05 23:57:11 +03:00
pfs_program.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
pfs_program.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_server.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_server.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_setup_actor.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_setup_actor.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_setup_object.cc Merge 10.4 into 10.5 2020-11-03 16:24:47 +02:00
pfs_setup_object.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_stat.h perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
pfs_status.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
pfs_status.h perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
pfs_timer.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_timer.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_user.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_user.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
pfs_variable.cc perfschema: remove unused variables 2020-03-17 07:56:40 +02:00
pfs_variable.h perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
pfs_visitor.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
pfs_visitor.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
rpl_gtid.h perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
table_accounts.cc Merge branch 'bb-10.4-release' into bb-10.5-release 2021-02-15 16:43:15 +01:00
table_accounts.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_all_instr.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_all_instr.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_esgs_by_account_by_event_name.cc Merge branch 'bb-10.4-release' into bb-10.5-release 2021-02-15 16:43:15 +01:00
table_esgs_by_account_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_esgs_by_host_by_event_name.cc Merge branch 'bb-10.4-release' into bb-10.5-release 2021-02-15 16:43:15 +01:00
table_esgs_by_host_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_esgs_by_thread_by_event_name.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_esgs_by_thread_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_esgs_by_user_by_event_name.cc MDEV-16341 Wrong length for USER columns in performance_schema tables 2021-01-11 21:54:48 +01:00
table_esgs_by_user_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_esgs_global_by_event_name.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_esgs_global_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_esms_by_account_by_event_name.cc Merge branch 'bb-10.4-release' into bb-10.5-release 2021-02-15 16:43:15 +01:00
table_esms_by_account_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_esms_by_digest.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_esms_by_digest.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_esms_by_host_by_event_name.cc Merge branch 'bb-10.4-release' into bb-10.5-release 2021-02-15 16:43:15 +01:00
table_esms_by_host_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_esms_by_program.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_esms_by_program.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_esms_by_thread_by_event_name.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_esms_by_thread_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_esms_by_user_by_event_name.cc MDEV-16341 Wrong length for USER columns in performance_schema tables 2021-01-11 21:54:48 +01:00
table_esms_by_user_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_esms_global_by_event_name.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_esms_global_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_ets_by_account_by_event_name.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_ets_by_account_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_ets_by_host_by_event_name.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_ets_by_host_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_ets_by_thread_by_event_name.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_ets_by_thread_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_ets_by_user_by_event_name.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_ets_by_user_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_ets_global_by_event_name.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_ets_global_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_events_stages.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_events_stages.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_events_statements.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
table_events_statements.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_events_transactions.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
table_events_transactions.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_events_waits.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
table_events_waits.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_events_waits_summary.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_events_waits_summary.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_ews_by_account_by_event_name.cc Merge branch 'bb-10.4-release' into bb-10.5-release 2021-02-15 16:43:15 +01:00
table_ews_by_account_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_ews_by_host_by_event_name.cc Merge branch 'bb-10.4-release' into bb-10.5-release 2021-02-15 16:43:15 +01:00
table_ews_by_host_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_ews_by_thread_by_event_name.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_ews_by_thread_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_ews_by_user_by_event_name.cc MDEV-16341 Wrong length for USER columns in performance_schema tables 2021-01-11 21:54:48 +01:00
table_ews_by_user_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_ews_global_by_event_name.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_ews_global_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_file_instances.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_file_instances.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_file_summary_by_event_name.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_file_summary_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_file_summary_by_instance.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_file_summary_by_instance.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_global_status.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_global_status.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_global_variables.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
table_global_variables.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_helper.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
table_helper.h perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
table_host_cache.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_host_cache.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_hosts.cc Merge branch 'bb-10.4-release' into bb-10.5-release 2021-02-15 16:43:15 +01:00
table_hosts.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_md_locks.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
table_md_locks.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_mems_by_account_by_event_name.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_mems_by_account_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_mems_by_host_by_event_name.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_mems_by_host_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_mems_by_thread_by_event_name.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_mems_by_thread_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_mems_by_user_by_event_name.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_mems_by_user_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_mems_global_by_event_name.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_mems_global_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_os_global_by_type.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_os_global_by_type.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_performance_timers.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_performance_timers.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_prepared_stmt_instances.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_prepared_stmt_instances.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_replication_applier_configuration.cc MDEV-16437: merge 5.7 P_S replication instrumentation and tables 2021-04-16 09:05:39 +05:30
table_replication_applier_configuration.h MDEV-16437: merge 5.7 P_S replication instrumentation and tables 2021-04-16 09:05:39 +05:30
table_replication_applier_status.cc MDEV-16437: merge 5.7 P_S replication instrumentation and tables 2021-04-16 09:11:48 +05:30
table_replication_applier_status.h MDEV-16437: merge 5.7 P_S replication instrumentation and tables 2021-04-16 09:11:48 +05:30
table_replication_applier_status_by_coordinator.cc MDEV-16437: merge 5.7 P_S replication instrumentation and tables 2021-04-16 09:02:00 +05:30
table_replication_applier_status_by_coordinator.h MDEV-16437: merge 5.7 P_S replication instrumentation and tables 2021-04-16 09:02:00 +05:30
table_replication_applier_status_by_worker.cc MDEV-25502: rpl.rpl_perfschema_applier_status_by_worker failed in bb with: Test assertion failed 2021-05-13 10:34:32 +05:30
table_replication_applier_status_by_worker.h MDEV-20220: Merge 5.7 P_S replication table 'replication_applier_status_by_worker 2021-04-08 17:19:51 +05:30
table_replication_connection_configuration.cc MDEV-16437: merge 5.7 P_S replication instrumentation and tables 2021-04-16 08:54:19 +05:30
table_replication_connection_configuration.h MDEV-16437: merge 5.7 P_S replication instrumentation and tables 2021-04-16 08:54:19 +05:30
table_replication_connection_status.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
table_replication_connection_status.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_replication_group_member_stats.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
table_replication_group_member_stats.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_replication_group_members.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
table_replication_group_members.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_session_account_connect_attrs.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_session_account_connect_attrs.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_session_connect.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_session_connect.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_session_connect_attrs.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_session_connect_attrs.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_session_status.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_session_status.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_session_variables.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
table_session_variables.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_setup_actors.cc Merge branch 'bb-10.4-release' into bb-10.5-release 2021-02-15 16:43:15 +01:00
table_setup_actors.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_setup_consumers.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_setup_consumers.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_setup_instruments.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_setup_instruments.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_setup_objects.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
table_setup_objects.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_setup_timers.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
table_setup_timers.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_socket_instances.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_socket_instances.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_socket_summary_by_event_name.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_socket_summary_by_event_name.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_socket_summary_by_instance.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_socket_summary_by_instance.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_status_by_account.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_status_by_account.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_status_by_host.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_status_by_host.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_status_by_thread.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_status_by_thread.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_status_by_user.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_status_by_user.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_sync_instances.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_sync_instances.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_table_handles.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_table_handles.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_threads.cc Merge branch 'bb-10.4-release' into bb-10.5-release 2021-02-15 16:43:15 +01:00
table_threads.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_tiws_by_index_usage.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_tiws_by_index_usage.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_tiws_by_table.cc P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_tiws_by_table.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_tlws_by_table.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
table_tlws_by_table.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_users.cc MDEV-16341 Wrong length for USER columns in performance_schema tables 2021-01-11 21:54:48 +01:00
table_users.h P_S 5.7.28 2020-03-10 19:24:22 +01:00
table_uvar_by_thread.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
table_uvar_by_thread.h perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
table_variables_by_thread.cc perfschema compilation, test and misc fixes 2020-03-10 19:24:23 +01:00
table_variables_by_thread.h P_S 5.7.28 2020-03-10 19:24:22 +01:00