~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/variables.result

Merging Stewart's show create table patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
341
341
  `c3` int DEFAULT NULL,
342
342
  `c4` int DEFAULT NULL,
343
343
  `c5` bigint DEFAULT NULL
344
 
) ENGINE=MyISAM
 
344
) ENGINE=MyISAM COLLATE = utf8_general_ci
345
345
drop table t1;
346
346
set @arg00= 8, @arg01= 8.8, @arg02= 'a string', @arg03= 0.2e0;
347
347
create temporary table t1 as select @arg00 as c1, @arg01 as c2, @arg02 as c3, @arg03 as c4;
352
352
  `c2` decimal(65,30) DEFAULT NULL,
353
353
  `c3` text,
354
354
  `c4` double DEFAULT NULL
355
 
) ENGINE=MyISAM
 
355
) ENGINE=MyISAM COLLATE = utf8_general_ci
356
356
drop table t1;
357
357
SET GLOBAL table_open_cache=-1;
358
358
Warnings: