diff options
author | monty@hundin.mysql.fi <> | 2001-09-03 05:16:15 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-09-03 05:16:15 +0300 |
commit | 279de0c67c3c07d2dafb94763966842d8160c242 (patch) | |
tree | e5faac23f2977c577bc7fac42a2b90e5f53f2855 /mysql-test/t/drop.test | |
parent | 5d732a069833dcc668f28869a04091e0b23b0b46 (diff) | |
download | mariadb-git-279de0c67c3c07d2dafb94763966842d8160c242.tar.gz |
Update of manual with 4.0 changes
Create innodb table space if configuring with InnoDB and not using --skip-innodb
Fixes for TRUNCATE TABLE and DROP DATABASE.
Diffstat (limited to 'mysql-test/t/drop.test')
-rw-r--r-- | mysql-test/t/drop.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/t/drop.test b/mysql-test/t/drop.test index 2a45fe8253b..50a33762776 100644 --- a/mysql-test/t/drop.test +++ b/mysql-test/t/drop.test @@ -28,16 +28,16 @@ drop database foo; # test drop/create database and FLUSH TABLES WITH READ LOCK drop database if exists foo; flush tables with read lock; ---error 1209 +--error 1209,1218; create database foo; unlock tables; create database foo; show databases; flush tables with read lock; ---error 1208 +--error 1208,1218; drop database foo; unlock tables; drop database foo; show databases; - - +--error 1008 +drop database foo; |