~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/union.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:
746
746
# Bug#15949 union + illegal mix of collations (IMPLICIT + COERCIBLE)
747
747
#
748
748
select concat('a', 'b' collate utf8_bin);
749
 
create table t1 (foo varchar(100)) collate utf8_bin;
 
749
create table t1 (foo varchar(100)) collate=utf8_bin;
750
750
insert into t1 (foo) values ("foo");
751
751
--error 1146
752
752
select foo from t1 union select 'bar' as foo from dual;