~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/innodb_mysql.result

  • Committer: Brian Aker
  • Date: 2009-08-03 15:50:04 UTC
  • mfrom: (1106.3.2 heap)
  • Revision ID: brian@gaz-20090803155004-tq6ec51i68ay1aye
Merge of Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
160
160
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
161
161
1       SIMPLE  NULL    NULL    NULL    NULL    NULL    NULL    NULL    Impossible WHERE noticed after reading const tables
162
162
DROP TABLE t1;
163
 
create table t1m (a int) engine = MEMORY;
 
163
create temporary table t1m (a int) engine = MEMORY;
164
164
create table t1i (a int);
165
 
create table t2m (a int) engine = MEMORY;
 
165
create temporary table t2m (a int) engine = MEMORY;
166
166
create table t2i (a int);
167
167
insert into t2m values (5);
168
168
insert into t2i values (5);
212
212
count(*)        min(7)  max(7)
213
213
0       NULL    NULL
214
214
drop table t1m, t1i, t2m, t2i;
215
 
create table t1 (
 
215
create TEMPORARY table t1 (
216
216
a1 char(64), a2 char(64), b char(16), c char(16) not null, d char(16), dummy char(64) default ' '
217
217
) ENGINE = MEMORY;
218
218
insert into t1 (a1, a2, b, c, d) values