2014-10-17 21:24:00 +02:00
|
|
|
--disable_warnings
|
|
|
|
drop table if exists t1;
|
|
|
|
--enable_warnings
|
|
|
|
|
2016-12-21 21:40:52 +01:00
|
|
|
#
|
|
|
|
# Remove old log file
|
|
|
|
#
|
|
|
|
let SLOW_LOG_FILE= `select @@slow_query_log_file`;
|
|
|
|
|
|
|
|
SET @@global.slow_query_log = OFF;
|
|
|
|
|
|
|
|
perl;
|
|
|
|
my $slow_log_file= $ENV{'SLOW_LOG_FILE'} or die "SLOW_LOG_FILE not set";
|
|
|
|
unlink($slow_log_file);
|
|
|
|
EOF
|
|
|
|
|
|
|
|
FLUSH SLOW LOGS;
|
|
|
|
SET @@global.slow_query_log = ON;
|
|
|
|
|
2014-10-17 21:24:00 +02:00
|
|
|
create table t1 (a int);
|
|
|
|
INSERT INTO t1 VALUES (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
|
2024-10-03 08:31:39 +02:00
|
|
|
--disable_cursor_protocol
|
2023-05-31 06:57:45 +02:00
|
|
|
--disable_ps2_protocol
|
2014-10-17 21:24:00 +02:00
|
|
|
select * from t1 where a<3;
|
2023-05-31 06:57:45 +02:00
|
|
|
--enable_ps2_protocol
|
2024-10-03 08:31:39 +02:00
|
|
|
--enable_cursor_protocol
|
2014-10-17 21:24:00 +02:00
|
|
|
drop table t1;
|
|
|
|
let SLOW_LOG_FILE= `select @@slow_query_log_file`;
|
|
|
|
|
|
|
|
# select @@slow_query_log_file;
|
|
|
|
|
|
|
|
perl;
|
|
|
|
|
|
|
|
my $slow_log_file= $ENV{'SLOW_LOG_FILE'} or die "SLOW_LOG_FILE not set";
|
|
|
|
open(FILE, $slow_log_file) or die "Failed to open $slow_log_file";
|
|
|
|
while(<FILE>) {
|
2014-11-29 22:29:03 +01:00
|
|
|
next if 1../create table t1/; # skip entries generated by mtr prelude
|
|
|
|
print if /explain:/;
|
2014-10-17 21:24:00 +02:00
|
|
|
}
|
|
|
|
close(FILE);
|
|
|
|
|
|
|
|
EOF
|