summaryrefslogtreecommitdiff
path: root/mysql-test/t/bdb-crash.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/bdb-crash.test')
-rw-r--r--mysql-test/t/bdb-crash.test51
1 files changed, 0 insertions, 51 deletions
diff --git a/mysql-test/t/bdb-crash.test b/mysql-test/t/bdb-crash.test
deleted file mode 100644
index 75f4d04d5df..00000000000
--- a/mysql-test/t/bdb-crash.test
+++ /dev/null
@@ -1,51 +0,0 @@
--- source include/have_bdb.inc
-
-# test for bug reported by Mark Steele
-
---disable_warnings
-drop table if exists t1;
---enable_warnings
-CREATE TABLE t1 (
- ChargeID int(10) unsigned NOT NULL auto_increment,
- ServiceID int(10) unsigned DEFAULT '0' NOT NULL,
- ChargeDate date DEFAULT '0000-00-00' NOT NULL,
- ChargeAmount decimal(20,2) DEFAULT '0.00' NOT NULL,
- FedTaxes decimal(20,2) DEFAULT '0.00' NOT NULL,
- ProvTaxes decimal(20,2) DEFAULT '0.00' NOT NULL,
- ChargeStatus enum('New','Auth','Unauth','Sale','Denied','Refund')
-DEFAULT 'New' NOT NULL,
- ChargeAuthorizationMessage text,
- ChargeComment text,
- ChargeTimeStamp varchar(20),
- PRIMARY KEY (ChargeID),
- KEY ServiceID (ServiceID),
- KEY ChargeDate (ChargeDate)
-) engine=BDB;
-
-BEGIN;
-INSERT INTO t1
-VALUES(NULL,1,'2001-03-01',1,1,1,'New',NULL,NULL,'now');
-COMMIT;
-
-BEGIN;
-UPDATE t1 SET ChargeAuthorizationMessage = 'blablabla' WHERE
-ChargeID = 1;
-COMMIT;
-
-INSERT INTO t1
-VALUES(NULL,1,'2001-03-01',1,1,1,'New',NULL,NULL,'now');
-select * from t1;
-drop table t1;
-
-#
-# Test for bug #2342 "Running ANALYZE TABLE on bdb table
-# inside a transaction hangs server thread"
-
-create table t1 (a int) engine=bdb;
-
-set autocommit=0;
-insert into t1 values(1);
-analyze table t1;
-drop table t1;
-
-# End of 4.1 tests