From: Date: November 2 2005 5:34pm Subject: bk commit into 5.0 tree (msvensson:1.1965) BUG#14514 List-Archive: http://lists.mysql.com/internals/31814 X-Bug: 14514 Message-Id: <20051102163446.77AE620781F@localhost.localdomain> Below is the list of changes that have just been committed into a local 5.0 repository of msvensson. When msvensson 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.1965 05/11/02 17:34:40 msvensson@neptunus.(none) +2 -0 BUG#14514 - Add tests mysql-test/t/ndb_basic.test 1.31 05/11/02 17:34:33 msvensson@neptunus.(none) +9 -0 Add test case mysql-test/r/ndb_basic.result 1.29 05/11/02 17:34:33 msvensson@neptunus.(none) +4 -0 Add test result # 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: msvensson # Host: neptunus.(none) # Root: /home/msvensson/mysql/mysql-5.0 --- 1.28/mysql-test/r/ndb_basic.result 2005-05-19 20:38:45 +02:00 +++ 1.29/mysql-test/r/ndb_basic.result 2005-11-02 17:34:33 +01:00 @@ -673,3 +673,7 @@ a 2 drop table atablewithareallylongandirritatingname; +CREATE TABLE t1 ( b INT ) PACK_KEYS = 0 ENGINE = ndb; +select * from t1; +b +drop table t1; --- 1.30/mysql-test/t/ndb_basic.test 2005-07-28 16:09:48 +02:00 +++ 1.31/mysql-test/t/ndb_basic.test 2005-11-02 17:34:33 +01:00 @@ -615,3 +615,12 @@ insert into atablewithareallylongandirritatingname values (2); select * from atablewithareallylongandirritatingname; drop table atablewithareallylongandirritatingname; + + +# +# BUG#14514 +# + +CREATE TABLE t1 ( b INT ) PACK_KEYS = 0 ENGINE = ndb; +select * from t1; +drop table t1;