diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2006-02-28 17:51:27 +0100 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2006-02-28 17:51:27 +0100 |
commit | b70aaf38bc351045af3d2415d94fddf80f2c5e22 (patch) | |
tree | 4b6d0c8da8a05f3625e6e9d284f85cbe2ecc8a12 /mysql-test/r | |
parent | 174791b5cdf75774f65915da6b51649fadad7c5b (diff) | |
download | mariadb-git-b70aaf38bc351045af3d2415d94fddf80f2c5e22.tar.gz |
Bug #17499 continued
- moved initialization of used_partitions
- more tests
+ removed reference to fixed bugs
mysql-test/r/ndb_partition_range.result:
Bug #17499 continued
- more testing
mysql-test/t/disabled.def:
removed reference to fixed bugs
mysql-test/t/ndb_partition_range.test:
Bug #17499 continued
- more testing
sql/ha_ndbcluster.cc:
Bug #17499 continued
- moved initialization of used_partitions
sql/sql_partition.cc:
Bug #17499 continued
- moved initialization of used_partitions
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/ndb_partition_range.result | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/r/ndb_partition_range.result b/mysql-test/r/ndb_partition_range.result index e078f38c166..546c0b1196c 100644 --- a/mysql-test/r/ndb_partition_range.result +++ b/mysql-test/r/ndb_partition_range.result @@ -159,13 +159,15 @@ a2 TEXT NOT NULL, a3 BIT NOT NULL, a4 DECIMAL(8,3), a5 INT NOT NULL, -a6 VARCHAR(255), +a6 INT, PRIMARY KEY(a1)) TABLESPACE ts1 STORAGE DISK ENGINE=NDB PARTITION BY LIST (a1) (PARTITION p0 VALUES IN (1,2,3,4,5), PARTITION p1 VALUES IN (6,7,8,9, 10), PARTITION p2 VALUES IN (11, 12, 13, 14, 15)); +ALTER TABLE test.t1 DROP COLUMN a6; +ALTER TABLE test.t1 ADD COLUMN a6 VARCHAR(255); SELECT COUNT(*) FROM test.t1; COUNT(*) 15 |