diff options
| author | unknown <serg@serg.mysql.com> | 2002-08-31 23:18:08 +0000 |
|---|---|---|
| committer | unknown <serg@serg.mysql.com> | 2002-08-31 23:18:08 +0000 |
| commit | 9418a8805716ef10ed7e39f2e56c44a9ade55bb4 (patch) | |
| tree | 3732ba6a0c00f9e269510a87e8bbedf1a98a1642 /mysql-test/t | |
| parent | 3bf098bf548b2af3ae61b7bfca9d3a0cde952544 (diff) | |
| download | mariadb-git-9418a8805716ef10ed7e39f2e56c44a9ade55bb4.tar.gz | |
LOCK+modify+OPTIMIZE bugfix
Diffstat (limited to 'mysql-test/t')
| -rw-r--r-- | mysql-test/t/myisam.test | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/t/myisam.test b/mysql-test/t/myisam.test index eb1d9a01020..45d26993795 100644 --- a/mysql-test/t/myisam.test +++ b/mysql-test/t/myisam.test @@ -64,3 +64,14 @@ explain select a,b from t1 order by b; explain select a,b from t1; explain select a,b,c from 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; + |
