mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +01:00
Bug#57306 SHOW PROCESSLIST does not display string literals well.
A post-patch fixing test failures on Windows. Host name in "SHOW PROCESSLIST" is displayed with port number for some reasons.
This commit is contained in:
parent
a2275f0c8f
commit
bdfcad0f9b
2 changed files with 6 additions and 6 deletions
|
@ -1525,13 +1525,13 @@ SET NAMES latin1;
|
|||
SELECT GET_LOCK('t',1000) AS 'óóóó';;
|
||||
SHOW PROCESSLIST;
|
||||
Id User Host db Command Time State Info
|
||||
### root localhost test Query ### ### SHOW PROCESSLIST
|
||||
### root localhost test Query ### ### SELECT GET_LOCK('t',1000) AS 'óóóó'
|
||||
### root ### test Query ### ### SHOW PROCESSLIST
|
||||
### root ### test Query ### ### SELECT GET_LOCK('t',1000) AS 'óóóó'
|
||||
SET NAMES utf8;
|
||||
SHOW PROCESSLIST;
|
||||
Id User Host db Command Time State Info
|
||||
### root localhost test Query ### ### SHOW PROCESSLIST
|
||||
### root localhost test Query ### ### SELECT GET_LOCK('t',1000) AS 'óóóó'
|
||||
### root ### test Query ### ### SHOW PROCESSLIST
|
||||
### root ### test Query ### ### SELECT GET_LOCK('t',1000) AS 'óóóó'
|
||||
SELECT RELEASE_LOCK('t');
|
||||
RELEASE_LOCK('t')
|
||||
1
|
||||
|
|
|
@ -1343,10 +1343,10 @@ SET NAMES latin1;
|
|||
let $wait_timeout= 10;
|
||||
let $wait_condition= SELECT COUNT(*) FROM INFORMATION_SCHEMA.PROCESSLIST WHERE INFO LIKE '%GET_LOCK%' AND ID != CONNECTION_ID();
|
||||
--source include/wait_condition.inc
|
||||
--replace_column 1 ### 6 ### 7 ###
|
||||
--replace_column 1 ### 3 ### 6 ### 7 ###
|
||||
SHOW PROCESSLIST;
|
||||
SET NAMES utf8;
|
||||
--replace_column 1 ### 6 ### 7 ###
|
||||
--replace_column 1 ### 3 ### 6 ### 7 ###
|
||||
SHOW PROCESSLIST;
|
||||
SELECT RELEASE_LOCK('t');
|
||||
--connection con1
|
||||
|
|
Loading…
Reference in a new issue