mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
manual merge
This commit is contained in:
@ -1064,4 +1064,18 @@ ALTER TABLE t1 DISABLE KEYS;
|
|||||||
ALTER TABLE t1 ENABLE KEYS;
|
ALTER TABLE t1 ENABLE KEYS;
|
||||||
DROP TABLE t1;
|
DROP TABLE t1;
|
||||||
|
|
||||||
|
#
|
||||||
|
# Bug 17455 Partitions: Wrong message and error when using Repair/Optimize
|
||||||
|
# table on partitioned table
|
||||||
|
#
|
||||||
|
create table t1 (a int)
|
||||||
|
engine=MEMORY
|
||||||
|
partition by key (a);
|
||||||
|
|
||||||
|
REPAIR TABLE t1;
|
||||||
|
OPTIMIZE TABLE t1;
|
||||||
|
|
||||||
|
drop table t1;
|
||||||
|
>>>>>>>
|
||||||
|
|
||||||
--echo End of 5.1 tests
|
--echo End of 5.1 tests
|
||||||
|
Reference in New Issue
Block a user