List:Commits« Previous MessageNext Message »
From:Martin Skold Date:April 20 2006 9:08am
Subject:bk commit into 5.0 tree (mskold:1.2167) BUG#19196
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of marty. When marty 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
  1.2167 06/04/20 11:08:06 mskold@stripped +1 -0
  Fix for bug#19196: Attempt to create index on usupported field type gives wrong error code, updated expected results

  mysql-test/r/ndb_bitfield.result
    1.6 06/04/20 11:07:52 mskold@stripped +2 -2
    Fix for bug#19196: Attempt to create index on usupported field type gives wrong error code, updated expected results

# 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:	mskold
# Host:	blowfish.ndb.mysql.com
# Root:	/usr/local/home/marty/MySQL/mysql-5.0

--- 1.5/mysql-test/r/ndb_bitfield.result	2006-01-02 14:38:35 +01:00
+++ 1.6/mysql-test/r/ndb_bitfield.result	2006-04-20 11:07:52 +02:00
@@ -201,13 +201,13 @@
 pk1 bit(9) not null primary key,
 b int
 ) engine=ndbcluster;
-ERROR HY000: Can't create table './test/t1.frm' (errno: 739)
+ERROR HY000: Can't create table './test/t1.frm' (errno: 906)
 create table t1 (
 pk1 int not null primary key,
 b bit(9),
 key(b)
 ) engine=ndbcluster;
-ERROR HY000: Can't create table './test/t1.frm' (errno: 743)
+ERROR HY000: Can't create table './test/t1.frm' (errno: 906)
 create table t1 (
 pk1 int primary key,
 b bit(32) not null
Thread
bk commit into 5.0 tree (mskold:1.2167) BUG#19196Martin Skold20 Apr