~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/variables.result

  • Committer: Brian Aker
  • Date: 2009-02-18 01:52:47 UTC
  • mfrom: (873.2.35 devel)
  • Revision ID: brian@tangent.org-20090218015247-1hjai6kkwuife5zs
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
455
455
show create table t1;
456
456
Table   Create Table
457
457
t1      CREATE TABLE `t1` (
458
 
  `c1` int,
459
 
  `c2` int,
460
 
  `c3` int,
461
 
  `c4` int,
462
 
  `c5` bigint
 
458
  `c1` int DEFAULT NULL,
 
459
  `c2` int DEFAULT NULL,
 
460
  `c3` int DEFAULT NULL,
 
461
  `c4` int DEFAULT NULL,
 
462
  `c5` bigint DEFAULT NULL
463
463
) ENGINE=MyISAM
464
464
drop table t1;
465
465
set @arg00= 8, @arg01= 8.8, @arg02= 'a string', @arg03= 0.2e0;
467
467
show create table t1;
468
468
Table   Create Table
469
469
t1      CREATE TABLE `t1` (
470
 
  `c1` bigint,
471
 
  `c2` decimal(65,30),
 
470
  `c1` bigint DEFAULT NULL,
 
471
  `c2` decimal(65,30) DEFAULT NULL,
472
472
  `c3` text,
473
 
  `c4` double
 
473
  `c4` double DEFAULT NULL
474
474
) ENGINE=MyISAM
475
475
drop table t1;
476
476
SET GLOBAL table_open_cache=-1;