summaryrefslogtreecommitdiff
path: root/mysql-test/t/analyze_stmt_slow_query_log.test
blob: 7346ac3b2c5b8187978312d165a5098a03f86ade (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--disable_warnings
drop table if exists t1;
--enable_warnings

create table t1 (a int);
INSERT INTO t1 VALUES (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
select * from t1 where a<3;
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>) {
    next if 1../create table t1/; # skip entries generated by mtr prelude
    print if /explain:/;
  }
  close(FILE);

EOF