1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Merge from 5.1-bugteam

This commit is contained in:
Magne Mahre
2010-09-16 13:00:53 +02:00
3 changed files with 24 additions and 0 deletions

View File

@ -2653,3 +2653,13 @@ COMMIT;
COMMIT;
DROP TABLE t1;
DROP FUNCTION f1;
#
# Bug#54606 innodb fast alter table + pack_keys=0
# prevents adding new indexes
#
CREATE TABLE t1 (a INT, b CHAR(9), c INT, key(b))
ENGINE=InnoDB
PACK_KEYS=0;
CREATE INDEX a ON t1 (a);
CREATE INDEX c on t1 (c);
DROP TABLE t1;