diff options
author | unknown <monty@mysql.com> | 2003-11-21 14:41:57 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2003-11-21 14:41:57 +0200 |
commit | 52521cc8c76f99d2046a72a09440e616797e672a (patch) | |
tree | 1dae851e03d54c7a8de1e73a27a50426cef61563 /mysql-test/r/raid.result | |
parent | eaae71470800fd12db6f4c0583a70e6f6eb722ae (diff) | |
download | mariadb-git-52521cc8c76f99d2046a72a09440e616797e672a.tar.gz |
Fixed memory leak with RAID tables
Fixed tests for RAID tables
Detect uninitialized mutexes on lock and destroy
mysql-test/r/raid.result:
Updated results
mysql-test/r/rpl_change_master.result:
Update results missing from last patch
mysql-test/t/raid.test:
Clean up test
mysys/mf_iocache.c:
Comments
Small safety fix
mysys/thr_mutex.c:
Detect uninitialized mutexes on lock and destroy
sql/sql_db.cc:
Fixed memory leak with RAID tables
Diffstat (limited to 'mysql-test/r/raid.result')
-rw-r--r-- | mysql-test/r/raid.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/raid.result b/mysql-test/r/raid.result index fd47a9451f6..6e16757a43d 100644 --- a/mysql-test/r/raid.result +++ b/mysql-test/r/raid.result @@ -1,7 +1,8 @@ -create database test_raid; -create table test_raid.r1 (i int) raid_type=1; -drop database test_raid; DROP TABLE IF EXISTS t1,t2; +DROP DATABASE IF EXISTS test_$1; +create database test_$1; +create table test_$1.r1 (i int) raid_type=1; +drop database test_$1; CREATE TABLE t1 ( id int unsigned not null auto_increment primary key, c char(255) not null @@ -99,7 +100,6 @@ count(*) 450 DROP TABLE t2; /* variable rows */ -DROP TABLE IF EXISTS t2; CREATE TABLE t1 ( id int unsigned not null auto_increment primary key, c varchar(255) not null |