diff options
author | unknown <monty@hundin.mysql.fi> | 2001-09-18 05:16:39 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-09-18 05:16:39 +0300 |
commit | 01eab0ce84a3f8cef702d9673cc6f6262f4a5a7a (patch) | |
tree | bec809e08634f934190434f5e22828676c8b9dfe /mysql-test/t/drop.test | |
parent | d8ae9669cd11f9c61105a9cbf19f9318a0e783fc (diff) | |
download | mariadb-git-01eab0ce84a3f8cef702d9673cc6f6262f4a5a7a.tar.gz |
Fix error messages
Configure fixes
configure.in:
Fix for pstack
libmysqld/Makefile.am:
Fix to create examples
mysql-test/t/drop.test:
Fix error messages
mysql-test/t/isolation.test:
Fix error messages
mysql-test/t/union.test:
Fix error messages
Diffstat (limited to 'mysql-test/t/drop.test')
-rw-r--r-- | mysql-test/t/drop.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/drop.test b/mysql-test/t/drop.test index 50a33762776..38323f5958d 100644 --- a/mysql-test/t/drop.test +++ b/mysql-test/t/drop.test @@ -28,13 +28,13 @@ 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,1218; +--error 1209,1219; create database foo; unlock tables; create database foo; show databases; flush tables with read lock; ---error 1208,1218; +--error 1208,1219; drop database foo; unlock tables; drop database foo; |