~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/mysql-test/patches/bug32625.diff

Tags: innodb-plugin-1.0.2
InnoDB Plugin 1.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--- mysql-test/t/type_bit_innodb.test.orig      2008-10-07 11:32:32.000000000 +0300
 
2
+++ mysql-test/t/type_bit_innodb.test   2008-10-07 11:56:40.000000000 +0300
 
3
@@ -40,6 +40,7 @@
 
4
 create table t1 (a bit) engine=innodb;
 
5
 insert into t1 values (b'0'), (b'1'), (b'000'), (b'100'), (b'001');
 
6
 select hex(a) from t1;
 
7
+--replace_regex /entry '(.*)' for/entry '' for/
 
8
 --error ER_DUP_ENTRY
 
9
 alter table t1 add unique (a);
 
10
 drop table t1;