~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/regression/r/686197.result

  • Committer: Stewart Smith
  • Date: 2011-01-14 05:21:52 UTC
  • mto: (2086.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2087.
  • Revision ID: stewart@flamingspork.com-20110114052152-xnvlbrzvy3bx1ucd
add some FIXME to analyze docs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
SHOW CREATE TABLE t1;
16
16
Table   Create Table
17
17
t1      CREATE TABLE `t1` (
18
 
  `A` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
 
18
  `A` BIGINT NOT NULL AUTO_INCREMENT,
19
19
  UNIQUE KEY `A` (`A`)
20
20
) ENGINE=InnoDB COLLATE = utf8_general_ci
21
21
ALTER TABLE t1 ADD COLUMN b INT DEFAULT 1 NOT NULL;
42
42
SHOW CREATE TABLE t1;
43
43
Table   Create Table
44
44
t1      CREATE TABLE `t1` (
45
 
  `A` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
 
45
  `A` BIGINT NOT NULL AUTO_INCREMENT,
46
46
  `b` INT DEFAULT NULL,
47
47
  UNIQUE KEY `A` (`A`)
48
48
) ENGINE=InnoDB COLLATE = utf8_general_ci