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:
@ -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,
|
||||
|
Reference in New Issue
Block a user