bdb-crash.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. -- source include/have_bdb.inc
  2. # test for bug reported by Mark Steele
  3. --disable_warnings
  4. drop table if exists t1;
  5. --enable_warnings
  6. CREATE TABLE t1 (
  7.   ChargeID int(10) unsigned NOT NULL auto_increment,
  8.   ServiceID int(10) unsigned DEFAULT '0' NOT NULL,
  9.   ChargeDate date DEFAULT '0000-00-00' NOT NULL,
  10.   ChargeAmount decimal(20,2) DEFAULT '0.00' NOT NULL,
  11.   FedTaxes decimal(20,2) DEFAULT '0.00' NOT NULL,
  12.   ProvTaxes decimal(20,2) DEFAULT '0.00' NOT NULL,
  13.   ChargeStatus enum('New','Auth','Unauth','Sale','Denied','Refund')
  14. DEFAULT 'New' NOT NULL,
  15.   ChargeAuthorizationMessage text,
  16.   ChargeComment text,
  17.   ChargeTimeStamp varchar(20),
  18.   PRIMARY KEY (ChargeID),
  19.   KEY ServiceID (ServiceID),
  20.   KEY ChargeDate (ChargeDate)
  21. ) engine=BDB;
  22. BEGIN;
  23. INSERT INTO t1
  24. VALUES(NULL,1,'2001-03-01',1,1,1,'New',NULL,NULL,'now');
  25. COMMIT;
  26. BEGIN;
  27. UPDATE t1 SET ChargeAuthorizationMessage = 'blablabla' WHERE
  28. ChargeID = 1;
  29. COMMIT;
  30. INSERT INTO t1
  31. VALUES(NULL,1,'2001-03-01',1,1,1,'New',NULL,NULL,'now');
  32. select * from t1;
  33. drop table t1;
  34. #
  35. # Test for bug #2342 "Running ANALYZE TABLE on bdb table 
  36. # inside a transaction hangs server thread"
  37. create table t1 (a int) engine=bdb;
  38. set autocommit=0;
  39. insert into t1 values(1);
  40. analyze table t1;
  41. drop table t1;
  42. # End of 4.1 tests