~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/variables.result

  • Committer: Andrew Hutchings
  • Date: 2010-09-08 19:03:09 UTC
  • mfrom: (1750 staging)
  • mto: (1750.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1751.
  • Revision ID: andrew@linuxjedi.co.uk-20100908190309-mya1nu7xvo1fpvk8
Merge trunk into branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
336
336
show create table t1;
337
337
Table   Create Table
338
338
t1      CREATE TEMPORARY TABLE `t1` (
339
 
  `c1` int DEFAULT NULL,
340
 
  `c2` int DEFAULT NULL,
341
 
  `c3` int DEFAULT NULL,
342
 
  `c4` int DEFAULT NULL,
343
 
  `c5` bigint DEFAULT NULL
 
339
  `c1` INT DEFAULT NULL,
 
340
  `c2` INT DEFAULT NULL,
 
341
  `c3` INT DEFAULT NULL,
 
342
  `c4` INT DEFAULT NULL,
 
343
  `c5` BIGINT DEFAULT NULL
344
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;
348
348
show create table t1;
349
349
Table   Create Table
350
350
t1      CREATE TEMPORARY TABLE `t1` (
351
 
  `c1` bigint DEFAULT NULL,
352
 
  `c2` decimal(65,30) DEFAULT NULL,
353
 
  `c3` text,
354
 
  `c4` double DEFAULT NULL
 
351
  `c1` BIGINT DEFAULT NULL,
 
352
  `c2` DECIMAL(65,30) DEFAULT NULL,
 
353
  `c3` TEXT COLLATE utf8_general_ci,
 
354
  `c4` DOUBLE DEFAULT NULL
355
355
) ENGINE=MyISAM COLLATE = utf8_general_ci
356
356
drop table t1;
357
357
SET GLOBAL table_open_cache=-1;