~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/union.result

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:
1161
1161
select concat('a', 'b' collate utf8_bin);
1162
1162
concat('a', 'b' collate utf8_bin)
1163
1163
ab
1164
 
create table t1 (foo varchar(100)) collate utf8_bin;
 
1164
create table t1 (foo varchar(100)) collate=utf8_bin;
1165
1165
insert into t1 (foo) values ("foo");
1166
1166
select foo from t1 union select 'bar' as foo from dual;
1167
1167
ERROR 42S02: Table 'test.dual' doesn't exist