1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

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

Bug ID 381.
This commit is contained in:
jani@hynda.(none)
2003-05-13 22:28:34 +03:00
parent c9c5841760
commit 447bebfd77
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,