~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_gconcat.result

  • Committer: Brian Aker
  • Date: 2009-02-18 01:52:47 UTC
  • mfrom: (873.2.35 devel)
  • Revision ID: brian@tangent.org-20090218015247-1hjai6kkwuife5zs
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
458
458
show create table t2;
459
459
Table   Create Table
460
460
t2      CREATE TABLE `t2` (
461
 
  `a` varchar(100)
 
461
  `a` varchar(100) DEFAULT NULL
462
462
) ENGINE=InnoDB
463
463
select collation(group_concat(a,b)) from t1;
464
464
collation(group_concat(a,b))