mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
e214aa1cd3
Store original charset during client authentication, and restore it for COM_RESET_CONNECTION
40 lines
No EOL
902 B
Text
40 lines
No EOL
902 B
Text
--source include/not_embedded.inc
|
|
|
|
FLUSH STATUS;
|
|
|
|
--disable_result_log
|
|
--disable_query_log
|
|
|
|
let $i = 10;
|
|
begin;
|
|
while ($i)
|
|
{
|
|
dec $i;
|
|
SELECT 1;
|
|
}
|
|
commit;
|
|
|
|
--enable_query_log
|
|
--enable_result_log
|
|
|
|
SHOW local STATUS LIKE 'com_select';
|
|
|
|
--reset_connection
|
|
|
|
SHOW local STATUS LIKE 'com_select';
|
|
|
|
--echo # Test if charset changes after reset (utf8)
|
|
connect(utf8_conn,localhost,root,,,,,CHARSET=utf8);
|
|
connection utf8_conn;
|
|
SELECT IF(@@character_set_client='utf8','OK', 'FAIL') AS RESULT;
|
|
--reset_connection
|
|
SELECT IF(@@character_set_client='utf8','OK', 'FAIL') AS RESULT;
|
|
disconnect utf8_conn;
|
|
|
|
--echo # Test if charset changes after reset (latin1)
|
|
connect(latin1_conn,localhost,root,,,,,CHARSET=latin1);
|
|
connection latin1_conn;
|
|
SELECT IF(@@character_set_client='latin1','OK', 'FAIL') AS RESULT;
|
|
--reset_connection
|
|
SELECT IF(@@character_set_client='latin1','OK', 'FAIL') AS RESULT;
|
|
disconnect latin1_conn; |