1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MDEV-7807 information_schema.processlist truncates queries with binary strings

Adding a new column INFORMATION_SCHEMA.PROCESSLIST.INFO_BINARY.
This commit is contained in:
Alexander Barkov
2015-05-08 00:34:06 +04:00
parent 0fcc350f73
commit 91ee98a8c8
8 changed files with 164 additions and 107 deletions

View File

@ -50,3 +50,23 @@ select command, time < 5 from information_schema.processlist where id != connect
disconnect con1;
set debug_sync='reset';
connection default;
--echo #
--echo # 10.1 tests
--echo #
--echo #
--echo # MDEV-7807 information_schema.processlist truncates queries with binary strings
--echo #
SET NAMES utf8;
--vertical_results
SELECT INFO, INFO_BINARY, 'xxx😎yyy' AS utf8mb4_string FROM INFORMATION_SCHEMA.PROCESSLIST WHERE INFO LIKE '%xxx%yyy%';
--horizontal_results
--echo #
--echo # End of 10.1 tests
--echo #