Commit d32d8f8d authored by Marc Alff's avatar Marc Alff

Bug#53394 Tests: perfschema.myisam_file_io fails

Backport from mysql-next-mr (5.6) to mysql-trunk (5.5)
parent 9247f225
...@@ -4,6 +4,7 @@ update performance_schema.SETUP_INSTRUMENTS set enabled='YES' ...@@ -4,6 +4,7 @@ update performance_schema.SETUP_INSTRUMENTS set enabled='YES'
update performance_schema.SETUP_CONSUMERS update performance_schema.SETUP_CONSUMERS
set enabled='YES'; set enabled='YES';
truncate table performance_schema.EVENTS_WAITS_HISTORY_LONG; truncate table performance_schema.EVENTS_WAITS_HISTORY_LONG;
flush status;
drop table if exists test.no_index_tab; drop table if exists test.no_index_tab;
create table test.no_index_tab ( a varchar(255), b int ) engine=myisam; create table test.no_index_tab ( a varchar(255), b int ) engine=myisam;
insert into no_index_tab set a = 'foo', b = 1; insert into no_index_tab set a = 'foo', b = 1;
......
# Copyright (C) 2009 Sun Microsystems, Inc # Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
# #
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
...@@ -10,8 +10,8 @@ ...@@ -10,8 +10,8 @@
# GNU General Public License for more details. # GNU General Public License for more details.
# #
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software Foundation,
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA
# Tests for PERFORMANCE_SCHEMA # Tests for PERFORMANCE_SCHEMA
...@@ -29,6 +29,9 @@ update performance_schema.SETUP_CONSUMERS ...@@ -29,6 +29,9 @@ update performance_schema.SETUP_CONSUMERS
truncate table performance_schema.EVENTS_WAITS_HISTORY_LONG; truncate table performance_schema.EVENTS_WAITS_HISTORY_LONG;
# Reset lost counters to a known state
flush status;
# Code to test # Code to test
--disable_warnings --disable_warnings
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment