mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
Better SHOW PROCESSLIST for replication
- When waiting for events, start time is now counted from start of wait
- Instead of having "Connect" as "Command" for all replication threads we
now have:
- Slave_IO for Slave thread reading relay log
- Slave_SQL for slave executing SQL commands or distribution queries to
Slave workers
- Slave_worker for slave threads executin SQL commands in parallel replication
This commit is contained in:
@@ -392,9 +392,9 @@ const LEX_STRING command_name[257]={
|
||||
{ 0, 0 }, //248
|
||||
{ 0, 0 }, //249
|
||||
{ 0, 0 }, //250
|
||||
{ 0, 0 }, //251
|
||||
{ 0, 0 }, //252
|
||||
{ 0, 0 }, //253
|
||||
{ C_STRING_WITH_LEN("Slave_worker") }, //251
|
||||
{ C_STRING_WITH_LEN("Slave_IO") }, //252
|
||||
{ C_STRING_WITH_LEN("Slave_SQL") }, //253
|
||||
{ C_STRING_WITH_LEN("Com_multi") }, //254
|
||||
{ C_STRING_WITH_LEN("Error") } // Last command number 255
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user