mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
BUG#21652 I_S.PROCESSLIST truncates STATE field compared to SHOW FULL PROCESSLIST
increase maximum length to 64 (max length that ndb injector creates is currently 62) sql/sql_show.cc: Increase max length of I_S.PROCESSLIST.STATE to accomodate NDB injector strings.
This commit is contained in:
parent
e884c5babc
commit
fdc1ee2ce7
1 changed files with 1 additions and 1 deletions
|
@ -5545,7 +5545,7 @@ ST_FIELD_INFO processlist_fields_info[]=
|
|||
{"DB", NAME_LEN, MYSQL_TYPE_STRING, 0, 1, "Db"},
|
||||
{"COMMAND", 16, MYSQL_TYPE_STRING, 0, 0, "Command"},
|
||||
{"TIME", 7, MYSQL_TYPE_LONG, 0, 0, "Time"},
|
||||
{"STATE", 30, MYSQL_TYPE_STRING, 0, 1, "State"},
|
||||
{"STATE", 64, MYSQL_TYPE_STRING, 0, 1, "State"},
|
||||
{"INFO", PROCESS_LIST_INFO_WIDTH, MYSQL_TYPE_STRING, 0, 1, "Info"},
|
||||
{0, 0, MYSQL_TYPE_STRING, 0, 0, 0}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue