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:
@ -412,29 +412,29 @@ update t1 set b= 666 where a = 6;
|
||||
set debug_sync= 'now SIGNAL start_replication';
|
||||
# First signal is for log description event.
|
||||
set debug_sync= 'now WAIT_FOR applied';
|
||||
select stage, progress from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
stage progress
|
||||
3 53.390
|
||||
select stage, progress, examined_rows from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
stage progress examined_rows
|
||||
3 53.390 0
|
||||
set debug_sync= 'now SIGNAL proceed WAIT_FOR applied';
|
||||
select stage, progress from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
stage progress
|
||||
3 63.559
|
||||
select stage, progress, examined_rows from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
stage progress examined_rows
|
||||
3 63.559 1
|
||||
set debug_sync= 'now SIGNAL proceed WAIT_FOR applied';
|
||||
select stage, progress from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
stage progress
|
||||
3 71.610
|
||||
select stage, progress, examined_rows from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
stage progress examined_rows
|
||||
3 71.610 2
|
||||
set debug_sync= 'now SIGNAL proceed WAIT_FOR applied';
|
||||
select stage, progress from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
stage progress
|
||||
3 81.780
|
||||
select stage, progress, examined_rows from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
stage progress examined_rows
|
||||
3 81.780 3
|
||||
set debug_sync= 'now SIGNAL proceed WAIT_FOR applied';
|
||||
select stage, progress from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
stage progress
|
||||
3 89.831
|
||||
select stage, progress, examined_rows from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
stage progress examined_rows
|
||||
3 89.831 4
|
||||
set debug_sync= 'now SIGNAL proceed WAIT_FOR applied';
|
||||
select stage, progress from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
stage progress
|
||||
3 100.000
|
||||
select stage, progress, examined_rows from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
stage progress examined_rows
|
||||
3 100.000 5
|
||||
set debug_sync= 'now SIGNAL proceed WAIT_FOR locking';
|
||||
begin;
|
||||
update t1 set b= 222 where a = 2;
|
||||
@ -442,17 +442,17 @@ update t1 set b= 333 where a = 3;
|
||||
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;
|
||||
stage progress
|
||||
4 33.333
|
||||
select stage, progress, examined_rows from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
stage progress examined_rows
|
||||
4 33.333 6
|
||||
set debug_sync= 'now SIGNAL proceed WAIT_FOR applied';
|
||||
select stage, progress from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
stage progress
|
||||
4 66.667
|
||||
select stage, progress, examined_rows from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
stage progress examined_rows
|
||||
4 66.667 7
|
||||
set debug_sync= 'now SIGNAL proceed WAIT_FOR applied';
|
||||
select stage, progress from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
stage progress
|
||||
4 100.000
|
||||
select stage, progress, examined_rows from INFORMATION_SCHEMA.PROCESSLIST where id = @con;
|
||||
stage progress examined_rows
|
||||
4 100.000 8
|
||||
set debug_sync= 'now SIGNAL proceed';
|
||||
connection default;
|
||||
select * from t1;
|
||||
|
Reference in New Issue
Block a user