~stewart/drizzle/embedded-innodb-rnd-read

« back to all changes in this revision

Viewing changes to plugin/show_dictionary/tests/t/show_temporary_tables.test

  • Committer: Stewart Smith
  • Date: 2010-04-03 05:03:17 UTC
  • mfrom: (1310.1.43)
  • Revision ID: stewart@flamingspork.com-20100403050317-d5l3aqqa2p411bos
Merged embedded-innodb-write-row into embedded-innodb-rnd-read.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
create schema a;
 
2
create schema b;
 
3
create schema c;
 
4
 
 
5
use a;
 
6
create temporary table a ( a int );
 
7
create temporary table b ( a int );
 
8
create temporary table c ( a int );
 
9
create temporary table d ( a int );
 
10
 
 
11
use b;
 
12
create temporary table a ( a int );
 
13
create temporary table c ( a int );
 
14
create temporary table d ( a int );
 
15
 
 
16
use c;
 
17
create temporary table a ( a int );
 
18
create temporary table b ( a int );
 
19
create temporary table d ( a int );
 
20
 
 
21
--replace_column 3 # 4 # 5 #
 
22
show temporary tables;
 
23
--replace_column 3 # 4 # 5 #
 
24
show temporary tables LIKE "a";
 
25
--replace_column 3 # 4 # 5 #
 
26
show temporary tables WHERE TABLE_SCHEMA="b";
 
27
 
 
28
drop schema b;
 
29
--replace_column 3 # 4 # 5 #
 
30
show temporary tables WHERE TABLE_SCHEMA="b";
 
31
 
 
32
drop schema a;
 
33
drop schema c;
 
34
 
 
35
--replace_column 3 # 4 # 5 #
 
36
show temporary tables;