mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Misc cleanup
This commit is contained in:
@ -16,6 +16,7 @@ b CHAR(100) DEFAULT 'initial value')
|
|||||||
ENGINE=MyISAM;
|
ENGINE=MyISAM;
|
||||||
insert into t1 (id) values (1), (2), (3), (4), (5), (6), (7), (8);
|
insert into t1 (id) values (1), (2), (3), (4), (5), (6), (7), (8);
|
||||||
update performance_schema.SETUP_INSTRUMENTS SET enabled = 'NO';
|
update performance_schema.SETUP_INSTRUMENTS SET enabled = 'NO';
|
||||||
|
update performance_schema.SETUP_CONSUMERS set enabled = 'NO';
|
||||||
set @dump_all=FALSE;
|
set @dump_all=FALSE;
|
||||||
"Verifying file aggregate consistency"
|
"Verifying file aggregate consistency"
|
||||||
SELECT EVENT_NAME, e.COUNT_READ, SUM(i.COUNT_READ)
|
SELECT EVENT_NAME, e.COUNT_READ, SUM(i.COUNT_READ)
|
||||||
|
@ -50,6 +50,8 @@ insert into t1 (id) values (1), (2), (3), (4), (5), (6), (7), (8);
|
|||||||
|
|
||||||
# Stop recording data, so the select below don't add noise.
|
# Stop recording data, so the select below don't add noise.
|
||||||
update performance_schema.SETUP_INSTRUMENTS SET enabled = 'NO';
|
update performance_schema.SETUP_INSTRUMENTS SET enabled = 'NO';
|
||||||
|
# Disable all consumers, for long standing waits
|
||||||
|
update performance_schema.SETUP_CONSUMERS set enabled = 'NO';
|
||||||
|
|
||||||
# Helper to debug
|
# Helper to debug
|
||||||
set @dump_all=FALSE;
|
set @dump_all=FALSE;
|
||||||
|
Reference in New Issue
Block a user