~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/ctype_utf8.result

  • Committer: Stewart Smith
  • Date: 2010-01-08 06:23:08 UTC
  • mto: (1502.1.30 fix-myisam)
  • mto: This revision was merged to the branch mainline in revision 1533.
  • Revision ID: stewart@flamingspork.com-20100108062308-tdr7vhfw9d81vghn
make the equals of KEY=VALUE required for CREATE TABLE options

Show diffs side-by-side

added added

removed removed

Lines of Context:
724
724
CREATE TEMPORARY TABLE t1 (
725
725
a varchar(255) NOT NULL default '',
726
726
KEY a (a)
727
 
) ENGINE=MyISAM COLLATE utf8_general_ci;
 
727
) ENGINE=MyISAM COLLATE=utf8_general_ci;
728
728
insert into t1 values (0xe880bd);
729
729
insert into t1 values (0x5b);
730
730
select hex(a) from t1;