summaryrefslogtreecommitdiff
path: root/include/mysql.h.pp
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2016-08-29 13:10:17 +0300
committerMonty <monty@mariadb.org>2016-08-29 13:10:17 +0300
commit96e95b5465e2e3e629d532f24ebe166f979dd220 (patch)
treeb3e12c58a8c722a1b97ac0ce3575b539258a76b4 /include/mysql.h.pp
parenteac7e57529756a2a7f6c269775323323f7b2c706 (diff)
downloadmariadb-git-96e95b5465e2e3e629d532f24ebe166f979dd220.tar.gz
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
Diffstat (limited to 'include/mysql.h.pp')
-rw-r--r--include/mysql.h.pp5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/mysql.h.pp b/include/mysql.h.pp
index 0c06141df6c..b9018376876 100644
--- a/include/mysql.h.pp
+++ b/include/mysql.h.pp
@@ -10,7 +10,10 @@ enum enum_server_command
COM_STMT_PREPARE, COM_STMT_EXECUTE, COM_STMT_SEND_LONG_DATA, COM_STMT_CLOSE,
COM_STMT_RESET, COM_SET_OPTION, COM_STMT_FETCH, COM_DAEMON,
COM_MDB_GAP_BEG,
- COM_MDB_GAP_END=253,
+ COM_MDB_GAP_END=250,
+ COM_SLAVE_WORKER,
+ COM_SLAVE_IO,
+ COM_SLAVE_SQL,
COM_MULTI,
COM_END
};