~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/create.result

  • Committer: Brian Aker
  • Date: 2009-11-30 19:13:19 UTC
  • mfrom: (1225.1.39 figure)
  • Revision ID: brian@gaz-20091130191319-zyt51fidacic3brf
Merge Padraig

Show diffs side-by-side

added added

removed removed

Lines of Context:
1453
1453
  `COMMAND` varchar(16) NOT NULL DEFAULT '',
1454
1454
  `TIME` bigint NOT NULL DEFAULT '0',
1455
1455
  `STATE` varchar(64) DEFAULT NULL,
1456
 
  `INFO` text
 
1456
  `INFO` varchar(16383) DEFAULT NULL
1457
1457
) ENGINE=InnoDB
1458
1458
drop table t1;
1459
1459
create temporary table t1 like information_schema.processlist;
1469
1469
  `COMMAND` varchar(16) NOT NULL DEFAULT '',
1470
1470
  `TIME` bigint NOT NULL DEFAULT '0',
1471
1471
  `STATE` varchar(64) DEFAULT NULL,
1472
 
  `INFO` text
 
1472
  `INFO` varchar(16383) DEFAULT NULL
1473
1473
) ENGINE=MyISAM
1474
1474
drop table t1;
1475
1475