~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/default_collation.result

  • Committer: lbieber
  • Date: 2009-07-28 15:08:13 UTC
  • mfrom: (1100 staging)
  • mto: (1093.1.34 captain)
  • mto: This revision was merged to the branch mainline in revision 1105.
  • Revision ID: lbieber@lbieber-laptop-20090728150813-vdmchh23gbrtbo4b
fix read_many_rows_innodb test to use InnoDB instead of MyISAM for now

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
create database mysqltest collate = utf8_bin;
 
2
show create database mysqltest;
 
3
Database        Create Database
 
4
mysqltest       CREATE DATABASE `mysqltest` COLLATE = utf8_bin
2
5
use mysqltest;
3
6
create table t1 (a varchar(10));
4
7
create table t2 (a varchar(10)) collate = utf8_general_ci;