List:Commits« Previous MessageNext Message »
From:Alexey Kopytov Date:May 31 2007 11:54am
Subject:bk commit into 5.1 tree (kaa:1.2487) BUG#27643
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of kaa. When kaa does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2007-05-31 15:54:09+04:00, kaa@stripped +2 -0
  Corrected the error codes for 5.1. This is to fix PB failures introduced by the patch for bug #27643.

  mysql-test/t/ctype_ucs2_def.test@stripped, 2007-05-31 15:54:01+04:00, kaa@stripped +1 -1
    Corrected the error codes for 5.1.

  mysql-test/t/heap_hash.test@stripped, 2007-05-31 15:54:01+04:00, kaa@stripped +2 -2
    Corrected the error codes for 5.1.

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	kaa
# Host:	polly.local
# Root:	/home/kaa/src/maint/bug27643/my51-bug27643

--- 1.13/mysql-test/t/heap_hash.test	2007-05-31 14:58:16 +04:00
+++ 1.14/mysql-test/t/heap_hash.test	2007-05-31 15:54:01 +04:00
@@ -272,14 +272,14 @@ CREATE TABLE t1(col1 VARCHAR(32) CHARACT
                 col2 VARCHAR(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, 
                 UNIQUE KEY key1 USING HASH (col1, col2)) ENGINE=MEMORY;
 INSERT INTO t1 VALUES('A', 'A');
---error ER_DUP_ENTRY
+--error ER_DUP_ENTRY_WITH_KEY_NAME
 INSERT INTO t1 VALUES('A ', 'A ');
 DROP TABLE t1;
 CREATE TABLE t1(col1 VARCHAR(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, 
                 col2 VARCHAR(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL, 
                 UNIQUE KEY key1 USING HASH (col1, col2)) ENGINE=MEMORY;
 INSERT INTO t1 VALUES('A', 'A');
---error ER_DUP_ENTRY
+--error ER_DUP_ENTRY_WITH_KEY_NAME
 INSERT INTO t1 VALUES('A ', 'A ');
 DROP TABLE t1;
 

--- 1.6/mysql-test/t/ctype_ucs2_def.test	2007-05-31 14:58:16 +04:00
+++ 1.7/mysql-test/t/ctype_ucs2_def.test	2007-05-31 15:54:01 +04:00
@@ -25,7 +25,7 @@ CREATE TABLE t1(col1 VARCHAR(32) CHARACT
                 col2 VARCHAR(32) CHARACTER SET ucs2 COLLATE ucs2_bin NOT NULL, 
                 UNIQUE KEY key1 USING HASH (col1, col2)) ENGINE=MEMORY;
 INSERT INTO t1 VALUES('A', 'A'), ('B', 'B'), ('C', 'C');
---error ER_DUP_ENTRY
+--error ER_DUP_ENTRY_WITH_KEY_NAME
 INSERT INTO t1 VALUES('A ', 'A ');
 DROP TABLE t1;
 
Thread
bk commit into 5.1 tree (kaa:1.2487) BUG#27643Alexey Kopytov31 May