~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/default.test

First pass on cleanup of Stewart's patch, plus re-engineer to make it work a
bit more with the current system. Engines approve key/pair.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
                 z varbinary(20) NOT NULL DEFAULT ' ',
38
38
                 a1 varbinary(30) NOT NULL DEFAULT ' ',
39
39
                 b1 blob NULL)
40
 
ENGINE=InnoDB DEFAULT COLLATE utf8_bin;
 
40
ENGINE=InnoDB DEFAULT COLLATE=utf8_bin;
41
41
 
42
42
INSERT into t1 (b) values ('1');
43
43
SHOW WARNINGS;
71
71
                 z varbinary(20) NOT NULL DEFAULT ' ',
72
72
                 a1 varbinary(30) NOT NULL DEFAULT ' ',
73
73
                 b1 blob NULL)
74
 
ENGINE=MyISAM DEFAULT COLLATE utf8_bin;
 
74
ENGINE=MyISAM DEFAULT COLLATE=utf8_bin;
75
75
 
76
76
SHOW CREATE TABLE t2;
77
77
INSERT into t2 (b) values ('1');