From 4ab6caf6fb174692623a9a0fc6255efac3d09585 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 14 Sep 2005 17:30:23 +0200 Subject: Bug #13179 partition info in mysqldump makes it hard to use dump in different sized cluster --- mysql-test/r/ndb_partition_range.result | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'mysql-test/r/ndb_partition_range.result') diff --git a/mysql-test/r/ndb_partition_range.result b/mysql-test/r/ndb_partition_range.result index 63bd89e1d1c..e66152851c0 100644 --- a/mysql-test/r/ndb_partition_range.result +++ b/mysql-test/r/ndb_partition_range.result @@ -102,4 +102,13 @@ a b c 1 1 1 DELETE from t1 WHERE b = 6; DELETE from t1 WHERE a = 6; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `a` int(11) NOT NULL, + `b` int(11) NOT NULL, + `c` int(11) NOT NULL, + PRIMARY KEY (`b`), + UNIQUE KEY `a` (`a`) +) ENGINE=ndbcluster DEFAULT CHARSET=latin1 PARTITION BY RANGE (b) (PARTITION x1 VALUES LESS THAN (5) ENGINE = NDBCLUSTER, PARTITION x2 VALUES LESS THAN (10) ENGINE = NDBCLUSTER, PARTITION x3 VALUES LESS THAN (20) ENGINE = NDBCLUSTER) drop table t1; -- cgit v1.2.1