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:
@ -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 #
|
||||
|
Reference in New Issue
Block a user