diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2006-02-13 20:34:36 +0100 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2006-02-13 20:34:36 +0100 |
commit | 7e4559e101b8f4a854c1c72d334cdbade62e364a (patch) | |
tree | a081add1e81ab3711b0ef8cef201c727a4866d41 /mysql-test/t/ndb_basic.test | |
parent | fbe0ba737e2c6a7eddf700e6e02ad891b85149fc (diff) | |
download | mariadb-git-7e4559e101b8f4a854c1c72d334cdbade62e364a.tar.gz |
Bug #17179 schema creation fails
-flag was set on field intable share instead of table
mysql-test/r/ndb_basic.result:
Bug #17179 schema creation fails
mysql-test/t/ndb_basic.test:
Bug #17179 schema creation fails
Diffstat (limited to 'mysql-test/t/ndb_basic.test')
-rw-r--r-- | mysql-test/t/ndb_basic.test | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mysql-test/t/ndb_basic.test b/mysql-test/t/ndb_basic.test index 93bcc9b9050..df94545abea 100644 --- a/mysql-test/t/ndb_basic.test +++ b/mysql-test/t/ndb_basic.test @@ -404,7 +404,9 @@ drop table t1; # # test the limit of no of attributes in one table # - +# also tests bug#17179, more than 31 attributes in +# a partitioned table +# create table t1 ( c1 int, c2 int, @@ -534,7 +536,7 @@ c125 int, c126 int, c127 int, c128 int, -primary key(c1)) engine=ndb; +primary key using hash(c1)) engine=ndb partition by key(c1); drop table t1; # |