~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_gconcat.result

  • Committer: LinuxJedi
  • Date: 2010-09-02 18:35:05 UTC
  • mto: (1748.1.1 build) (1749.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1749.
  • Revision ID: linuxjedi@linuxjedi-laptop-20100902183505-prmerskm11dt1teh
Alter many test cases for the new SHOW CREATE TABLE output

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) DEFAULT NULL
 
461
  `a` VARCHAR(100) COLLATE utf8_general_ci DEFAULT NULL
462
462
) ENGINE=DEFAULT COLLATE = utf8_general_ci
463
463
select collation(group_concat(a,b)) from t1;
464
464
collation(group_concat(a,b))