~jaypipes/drizzle/new-test-runner

« back to all changes in this revision

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

  • Committer: Jay Pipes
  • Date: 2008-12-11 17:52:34 UTC
  • mfrom: (482.16.152 testable)
  • Revision ID: jpipes@serialcoder-20081211175234-uqsfvmgxejvmellq
merge with trunk

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;