mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-20466: fix of embedded test suite
This commit is contained in:
@ -17,10 +17,4 @@ select command, time < 5 from information_schema.processlist where id != connect
|
|||||||
command time < 5
|
command time < 5
|
||||||
Sleep 1
|
Sleep 1
|
||||||
set debug_sync='reset';
|
set debug_sync='reset';
|
||||||
#
|
|
||||||
# MDEV-20466: SHOW PROCESSLIST truncates query text on \0 bytes
|
|
||||||
#
|
|
||||||
SET DEBUG_SYNC= 'before_join_optimize SIGNAL in_sync';
|
|
||||||
SET DEBUG_SYNC= 'now WAIT_FOR in_sync';
|
|
||||||
SET DEBUG_SYNC = 'RESET';
|
|
||||||
End of 5.5 tests
|
End of 5.5 tests
|
||||||
|
7
mysql-test/r/processlist_notembedded.result
Normal file
7
mysql-test/r/processlist_notembedded.result
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#
|
||||||
|
# MDEV-20466: SHOW PROCESSLIST truncates query text on \0 bytes
|
||||||
|
#
|
||||||
|
SET DEBUG_SYNC= 'before_join_optimize SIGNAL in_sync';
|
||||||
|
SET DEBUG_SYNC= 'now WAIT_FOR in_sync';
|
||||||
|
SET DEBUG_SYNC = 'RESET';
|
||||||
|
End of 5.5 tests
|
@ -51,33 +51,4 @@ select command, time < 5 from information_schema.processlist where id != connect
|
|||||||
disconnect con1;
|
disconnect con1;
|
||||||
set debug_sync='reset';
|
set debug_sync='reset';
|
||||||
|
|
||||||
--echo #
|
|
||||||
--echo # MDEV-20466: SHOW PROCESSLIST truncates query text on \0 bytes
|
|
||||||
--echo #
|
|
||||||
|
|
||||||
connect (con1,localhost,root,,);
|
|
||||||
|
|
||||||
connection con1;
|
|
||||||
|
|
||||||
let $q= `select CONCAT("SELECT user FROM mysql.user WHERE user ='some", CHAR(0), "' or sleep (30)")`;
|
|
||||||
|
|
||||||
SET DEBUG_SYNC= 'before_join_optimize SIGNAL in_sync';
|
|
||||||
--disable_query_log
|
|
||||||
--send_eval $q;
|
|
||||||
--enable_query_log
|
|
||||||
connection default;
|
|
||||||
|
|
||||||
SET DEBUG_SYNC= 'now WAIT_FOR in_sync';
|
|
||||||
|
|
||||||
exec $MYSQL test -e "SHOW PROCESSLIST" > $MYSQLTEST_VARDIR/tmp/MDEV-20466.text;
|
|
||||||
|
|
||||||
let SEARCH_FILE=$MYSQLTEST_VARDIR/tmp/MDEV-20466.text;
|
|
||||||
let SEARCH_PATTERN=sleep;
|
|
||||||
source include/search_pattern_in_file.inc;
|
|
||||||
remove_file $MYSQLTEST_VARDIR/tmp//MDEV-20466.text;
|
|
||||||
|
|
||||||
disconnect con1;
|
|
||||||
|
|
||||||
SET DEBUG_SYNC = 'RESET';
|
|
||||||
|
|
||||||
--echo End of 5.5 tests
|
--echo End of 5.5 tests
|
||||||
|
34
mysql-test/t/processlist_notembedded.test
Normal file
34
mysql-test/t/processlist_notembedded.test
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
source include/have_debug.inc;
|
||||||
|
source include/have_debug_sync.inc;
|
||||||
|
source include/not_embedded.inc;
|
||||||
|
|
||||||
|
--echo #
|
||||||
|
--echo # MDEV-20466: SHOW PROCESSLIST truncates query text on \0 bytes
|
||||||
|
--echo #
|
||||||
|
|
||||||
|
connect (con1,localhost,root,,);
|
||||||
|
|
||||||
|
connection con1;
|
||||||
|
|
||||||
|
let $q= `select CONCAT("SELECT user FROM mysql.user WHERE user ='some", CHAR(0), "' or sleep (30)")`;
|
||||||
|
|
||||||
|
SET DEBUG_SYNC= 'before_join_optimize SIGNAL in_sync';
|
||||||
|
--disable_query_log
|
||||||
|
--send_eval $q;
|
||||||
|
--enable_query_log
|
||||||
|
connection default;
|
||||||
|
|
||||||
|
SET DEBUG_SYNC= 'now WAIT_FOR in_sync';
|
||||||
|
|
||||||
|
exec $MYSQL test -e "SHOW PROCESSLIST" > $MYSQLTEST_VARDIR/tmp/MDEV-20466.text;
|
||||||
|
|
||||||
|
let SEARCH_FILE=$MYSQLTEST_VARDIR/tmp/MDEV-20466.text;
|
||||||
|
let SEARCH_PATTERN=sleep;
|
||||||
|
source include/search_pattern_in_file.inc;
|
||||||
|
remove_file $MYSQLTEST_VARDIR/tmp//MDEV-20466.text;
|
||||||
|
|
||||||
|
disconnect con1;
|
||||||
|
|
||||||
|
SET DEBUG_SYNC = 'RESET';
|
||||||
|
|
||||||
|
--echo End of 5.5 tests
|
Reference in New Issue
Block a user