1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fixed a bug in DROP DATABASE when database had a RAID type table.

Bug ID 381.
This commit is contained in:
unknown
2003-05-13 22:28:34 +03:00
parent 496357a180
commit 32450d159b
5 changed files with 27 additions and 8 deletions

View File

@ -5,6 +5,9 @@ show variables like "have_raid";
# Test of raided tables
#
create database test_raid;
create table test_raid.r1 (i int) raid_type=1;
drop database test_raid;
DROP TABLE IF EXISTS t1,t2;
CREATE TABLE t1 (
id int unsigned not null auto_increment primary key,