mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
LOCK+change+OPTIMIZE MyISAM bug
This commit is contained in:
@ -93,3 +93,14 @@ INSERT INTO t1 (post_text) VALUES ('ceci est un test'),('ceci est un test'),('ce
|
||||
REPAIR TABLE t1;
|
||||
CHECK TABLE t1;
|
||||
drop table t1;
|
||||
|
||||
#
|
||||
# Test of OPTIMIZE of locked and modified tables
|
||||
#
|
||||
CREATE TABLE t1 (a INT);
|
||||
INSERT INTO t1 VALUES (1), (2), (3);
|
||||
LOCK TABLES t1 WRITE;
|
||||
INSERT INTO t1 VALUES (1), (2), (3);
|
||||
OPTIMIZE TABLE t1;
|
||||
DROP TABLE t1;
|
||||
|
||||
|
Reference in New Issue
Block a user