~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-10-02 14:17:48 UTC
  • mfrom: (1.1.1 upstream)
  • mto: (2.1.17 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20101002141748-m6vbfbfjhrw1153e
Tags: 2010.09.1802-1
* New upstream release.
* Removed pid-file argument hack.
* Updated GPL-2 address to be new address.
* Directly copy in drizzledump.1 since debian doesn't have sphinx 1.0 yet.
* Link to jquery from libjs-jquery. Add it as a depend.
* Add drizzled.8 symlink to the install files.

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;