~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/include/mix1.inc

Merged Trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
204
204
#
205
205
 
206
206
--disable_warnings
207
 
eval create table t1m (a int) engine = $other_engine_type;
 
207
eval create temporary table t1m (a int) engine = $other_engine_type;
208
208
create table t1i (a int);
209
 
eval create table t2m (a int) engine = $other_engine_type;
 
209
eval create temporary table t2m (a int) engine = $other_engine_type;
210
210
create table t2i (a int);
211
211
--enable_warnings
212
212
insert into t2m values (5);
239
239
# (was part of group_min_max.test)
240
240
#
241
241
 
242
 
eval create table t1 (
 
242
eval create TEMPORARY table t1 (
243
243
  a1 char(64), a2 char(64), b char(16), c char(16) not null, d char(16), dummy char(64) default ' '
244
244
) ENGINE = $other_engine_type;
245
245