~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/union.test

  • 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:
740
740
# Bug#15949 union + illegal mix of collations (IMPLICIT + COERCIBLE)
741
741
#
742
742
select concat('a', 'b' collate utf8_bin);
743
 
create table t1 (foo varchar(100)) collate utf8_bin;
 
743
create table t1 (foo varchar(100)) collate=utf8_bin;
744
744
insert into t1 (foo) values ("foo");
745
745
--error 1146
746
746
select foo from t1 union select 'bar' as foo from dual;