~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/func_gconcat.test

  • Committer: Monty Taylor
  • Date: 2009-03-31 18:02:35 UTC
  • mfrom: (942.3.1 drizzle)
  • mto: (971.1.10 mordred)
  • mto: This revision was merged to the branch mainline in revision 971.
  • Revision ID: mordred@inaugust.com-20090331180235-ubjt5enwgnke1inf
Merged from Vladimir.

Show diffs side-by-side

added added

removed removed

Lines of Context:
272
272
select collation(a) from t1;
273
273
select collation(group_concat(a)) from t1;
274
274
create table t2 select group_concat(a) as a from t1;
 
275
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
275
276
show create table t2;
276
277
select collation(group_concat(a,b)) from t1;
277
278
drop table t1;