~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/strict.result

Read Fields out of proto instead of FRM.

As non-radioactive fallout:
- no implicit defaults (see http://bugs.mysql.com/bug.php?id=43151)
- no real defaults for BLOB yet... but this paves the way (and it shouldn't be too hard now)

As radioactive fallout:
- parse_table_proto is approaching the length of War and Peace
- handling of corrupted proto is about non-existant. abort() is not ideal

Show diffs side-by-side

added added

removed removed

Lines of Context:
438
438
show create table t1;
439
439
Table   Create Table
440
440
t1      CREATE TABLE `t1` (
441
 
  `a` int NOT NULL DEFAULT '0',
 
441
  `a` int NOT NULL,
442
442
  `b` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
443
443
  PRIMARY KEY (`a`)
444
444
) ENGINE=InnoDB
448
448
show create table t1;
449
449
Table   Create Table
450
450
t1      CREATE TABLE `t1` (
451
 
  `a` int NOT NULL DEFAULT '0',
 
451
  `a` int NOT NULL,
452
452
  `b` timestamp NOT NULL DEFAULT '2005-01-02 03:04:05',
453
453
  PRIMARY KEY (`a`)
454
454
) ENGINE=InnoDB