~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

Viewing changes to mysql-test/suite/perfschema/t/temp_table_io.test

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Tests for PERFORMANCE_SCHEMA table io
 
2
 
 
3
--source include/not_embedded.inc
 
4
--source include/have_perfschema.inc
 
5
--source ../include/table_io_setup_helper.inc
 
6
 
 
7
let $engine_type= MyISAM;
 
8
let $table_item= test.no_index_tab;
 
9
--disable_warnings
 
10
eval drop temporary table if exists $table_item;
 
11
--enable_warnings
 
12
 
 
13
# Start recording events
 
14
update performance_schema.setup_consumers set enabled = 'YES';
 
15
insert into marker set a = 1;
 
16
eval create temporary table $table_item
 
17
( a varchar(255) not null, b int not null) engine = $engine_type;
 
18
insert into marker set a = 1;
 
19
eval show create table $table_item;
 
20
--source ../include/table_io_basic_dml.inc
 
21
eval drop temporary table $table_item;
 
22
 
 
23
# Stop recording events + pull result
 
24
--source ../include/table_io_result_helper.inc
 
25
 
 
26
# Cleanup
 
27
--source ../include/table_io_cleanup_helper.inc
 
28