mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
online alter: show examined rows in the progress report
This commit is contained in:
@ -510,22 +510,22 @@ eval set @con= $con;
|
||||
|
||||
--echo # First signal is for log description event.
|
||||
set debug_sync= 'now WAIT_FOR applied';
|
||||
select stage, progress from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
select stage, progress, examined_rows from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
set debug_sync= 'now SIGNAL proceed WAIT_FOR applied';
|
||||
|
||||
select stage, progress from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
select stage, progress, examined_rows from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
set debug_sync= 'now SIGNAL proceed WAIT_FOR applied';
|
||||
|
||||
select stage, progress from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
select stage, progress, examined_rows from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
set debug_sync= 'now SIGNAL proceed WAIT_FOR applied';
|
||||
|
||||
select stage, progress from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
select stage, progress, examined_rows from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
set debug_sync= 'now SIGNAL proceed WAIT_FOR applied';
|
||||
|
||||
select stage, progress from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
select stage, progress, examined_rows from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
set debug_sync= 'now SIGNAL proceed WAIT_FOR applied';
|
||||
|
||||
select stage, progress from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
select stage, progress, examined_rows from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
set debug_sync= 'now SIGNAL proceed WAIT_FOR locking';
|
||||
|
||||
begin;
|
||||
@ -537,13 +537,13 @@ update t1 set b= 444 where a = 4;
|
||||
commit;
|
||||
set debug_sync= 'now SIGNAL end WAIT_FOR applied';
|
||||
|
||||
select stage, progress from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
select stage, progress, examined_rows from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
set debug_sync= 'now SIGNAL proceed WAIT_FOR applied';
|
||||
|
||||
select stage, progress from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
select stage, progress, examined_rows from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
set debug_sync= 'now SIGNAL proceed WAIT_FOR applied';
|
||||
|
||||
select stage, progress from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
select stage, progress, examined_rows from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
set debug_sync= 'now SIGNAL proceed';
|
||||
|
||||
--connection default
|
||||
|
Reference in New Issue
Block a user