Commit e267f900 authored by tsmith@quadxeon.mysql.com's avatar tsmith@quadxeon.mysql.com
Browse files

Merge quadxeon.mysql.com:/benchmarks/ext3/TOSAVE/tsmith/bk/maint/b27653/50

into  quadxeon.mysql.com:/benchmarks/ext3/TOSAVE/tsmith/bk/maint/50
parents a22ae736 44af4144
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
--require r/lowercase1.require
--disable_query_log
show variables like 'lower_case_table_names';
--enable_query_log
+2 −2
Original line number Diff line number Diff line
@@ -238,7 +238,7 @@ sub mtr_report_stats ($) {
  }
  if (!$::opt_extern)
  {
    print "The servers where restarted $tot_restarts times\n";
    print "The servers were restarted $tot_restarts times\n";
  }

  if ( $::opt_timer )
@@ -357,7 +357,7 @@ sub mtr_report_stats ($) {

  if ( $tot_failed != 0 || $found_problems)
  {
    mtr_error("there where failing test cases");
    mtr_error("there were failing test cases");
  }
}

+2 −0
Original line number Diff line number Diff line
Variable_name	Value
lower_case_table_names	1
+6 −0
Original line number Diff line number Diff line
drop table if exists t1;
create table t1 (id int) engine=myisam;
insert into t1 values (1);
create temporary table t2 select * from t1;
drop temporary table t2;
drop table t1;
+2 −0
Original line number Diff line number Diff line
--lower-case-table-names=1
--tmpdir=$MYSQLTEST_VARDIR/tmp/MixedCase
Loading