mirror of
https://github.com/MariaDB/server.git
synced 2025-09-02 09:41:40 +03:00
row_merge_file_create_low(): Pass the directory of the temporary file to the PSI_FILE_CALL.
16 lines
604 B
Plaintext
16 lines
604 B
Plaintext
update performance_schema.setup_instruments set enabled='yes';
|
|
update performance_schema.setup_consumers set enabled='yes';
|
|
CREATE TABLE t1 (a serial, b varchar(255)) ENGINE=InnoDB;
|
|
BEGIN;
|
|
COMMIT;
|
|
SET DEBUG_SYNC = 'row_log_apply_before SIGNAL go WAIT_FOR gone';
|
|
ALTER TABLE t1 ADD INDEX(b), ALGORITHM=INPLACE;
|
|
SET DEBUG_SYNC = 'now WAIT_FOR go';
|
|
SELECT DISTINCT object_name FROM performance_schema.events_waits_history_long
|
|
WHERE event_name LIKE '%wait%io%file%innodb%innodb_temp_file%';
|
|
object_name
|
|
tmp/Innodb Merge Temp File
|
|
SET DEBUG_SYNC = 'now SIGNAL gone';
|
|
SET DEBUG_SYNC = 'RESET';
|
|
DROP TABLE t1;
|