~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/func_gconcat.test

  • Committer: Eric Day
  • Date: 2009-03-27 20:35:31 UTC
  • mto: (968.1.1 lib-merge)
  • mto: This revision was merged to the branch mainline in revision 969.
  • Revision ID: eday@oddments.org-20090327203531-4am4v2x42eylezmq
Fixes for Solaris build.

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/
276
275
show create table t2;
277
276
select collation(group_concat(a,b)) from t1;
278
277
drop table t1;