| Server IP : 88.99.149.37 / Your IP : 216.73.216.141 Web Server : nginx/1.31.2 System : Linux server-88-99-149-37 6.12.0-124.56.5.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 06:12:08 EDT 2026 x86_64 User : muralimurth ( 1015) PHP Version : 8.4.23 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/local/mysql/mysql-test/suite/sys_vars/t/ |
Upload File : |
SET @old_log_output= @@global.log_output;
SET @old_log_disable_statements= @@global.log_disabled_statements;
CREATE TABLE t1 (i INT PRIMARY KEY AUTO_INCREMENT, j VARCHAR(255) ) ENGINE=MyISAM;
insert into t1 (j) values ('a'),('b'),('c'),('d');
# enable slow logging to table
SET GLOBAL log_output = 'file,table';
DELIMITER $;
CREATE PROCEDURE slow()
BEGIN
SELECT count(if(sleep(1) >= 0,0,NULL)) from t1 where j>'b';
SELECT count(*) from t1 where j>'a';
END
$
DELIMITER ;$
select @@log_disabled_statements;
TRUNCATE TABLE mysql.general_log;
check table t1;
CALL slow();
--disable_ps2_protocol
SELECT count(if(sleep(1) >= 0,0,NULL)) from t1 where j>'b and part2';
--enable_ps2_protocol
--echo -->
SELECT argument FROM mysql.general_log where command_type <> "Close stmt" and command_type <> "Prepare" and argument not like "%general_log%";
--echo <--
TRUNCATE TABLE mysql.general_log;
SET SESSION log_disabled_statements="";
check table t1;
CALL slow();
--disable_ps2_protocol
SELECT count(if(sleep(1) >= 0,0,NULL)) from t1 where j>'b and part3';
--enable_ps2_protocol
--echo -->
SELECT argument FROM mysql.general_log where command_type <> "Close stmt" and command_type <> "Prepare" and argument not like "%general_log%";
--echo <--
TRUNCATE TABLE mysql.general_log;
SET SESSION log_disabled_statements="sp,slave";
check table t1;
CALL slow();
--disable_ps2_protocol
SELECT count(if(sleep(1) >= 0,0,NULL)) from t1 where j>'b and part4';
--enable_ps2_protocol
--echo -->
SELECT argument FROM mysql.general_log where command_type <> "Close stmt" and command_type <> "Prepare" and argument not like "%general_log%";
--echo <--
DROP TABLE t1;
DROP PROCEDURE slow;
#
# Restore setup
#
TRUNCATE TABLE mysql.general_log;
SET @@global.log_output= @old_log_output;
SET @@global.log_disabled_statements= @old_log_disable_statements;