~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/explain.test

  • Committer: Brian Aker
  • Date: 2009-06-16 00:53:22 UTC
  • mto: This revision was merged to the branch mainline in revision 1094.
  • Revision ID: brian@gaz-20090616005322-w0ode4jul9z8s2y9
Partial fix for tests for tmp

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
--disable_warnings
5
5
drop table if exists t1;
6
6
--enable_warnings
7
 
create table t1 (id int not null, str char(10), unique(str)) ENGINE=MYISAM;
 
7
create TEMPORARY table t1 (id int not null, str char(10), unique(str)) ENGINE=MYISAM;
8
8
explain select * from t1;
9
9
insert into t1 values (1, null),(2, null),(3, "foo"),(4, "bar");
10
10
select * from t1 where str is null;
23
23
 
24
24
explain select 1;
25
25
 
26
 
create table t1 (a int not null) ENGINE=myisam;
 
26
create TEMPORARY table t1 (a int not null) ENGINE=myisam;
27
27
explain select count(*) from t1;
28
28
insert into t1 values(1);
29
29
explain select count(*) from t1;
34
34
#
35
35
# Bug #3403 Wrong encoding in EXPLAIN SELECT output
36
36
#
37
 
create table ☃ (☢ int, ☣ int, key ☢ (☢), key ☣ (☢,☣)) ENGINE=MYISAM;
 
37
create TEMPORARY table ☃ (☢ int, ☣ int, key ☢ (☢), key ☣ (☢,☣)) ENGINE=MYISAM;
38
38
insert into ☃ (☢) values (1);
39
39
insert into ☃ (☢) values (2);
40
40
explain select ☢ from ☃ where ☢=1;