~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/delete.result

Fixed bashism.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
drop table t1;
53
53
CREATE TEMPORARY TABLE t1 (
54
54
bool     char(0) default NULL,
55
 
not_null varchar(20) NOT NULL default '',
 
55
not_null varchar(20) binary NOT NULL default '',
56
56
misc     integer not null,
57
57
PRIMARY KEY  (not_null)
58
58
) ENGINE=MyISAM;