1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

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
This commit is contained in:
unknown
2006-02-13 20:34:36 +01:00
parent fbe0ba737e
commit 7e4559e101
3 changed files with 15 additions and 3 deletions

View File

@@ -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;
#