~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/ctype_utf8.result

  • Committer: Brian Aker
  • Date: 2010-04-05 23:46:43 UTC
  • Revision ID: brian@gaz-20100405234643-0he3xnj902rc70r8
Fixing tests to work with PBXT.

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
select hex(s1) from t1;
136
136
hex(s1)
137
137
drop table t1;
138
 
create table t1 (a text, primary key(a(360)));
 
138
create table t1 (a text, primary key(a(360))) engine=innodb;
139
139
ERROR 42000: Specified key was too long; max key length is 767 bytes
140
140
CREATE TABLE t1 ( a varchar(10) );
141
141
INSERT INTO t1 VALUES ( 'test' );