mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
4615e50093
Fixed bug where one got an empty set instead of a DEADLOCK error when using BDB tables. Docs/manual.texi: Cleanup configure.in: Version number change mysql-test/t/backup.test: drop used tables mysql-test/t/bdb-crash.test: cleanup mysys/thr_lock.c: cleanup sql/mysqld.cc: safety fix sql/records.cc: Fixed bug where one got an empty set instead of a DEADLOCK error when using BDB tables. sql/sql_table.cc: Fix race condition in ANALYZE TABLE.
34 lines
965 B
Text
34 lines
965 B
Text
# test for bug reported by Mark Steele
|
|
|
|
drop table if exists t1;
|
|
CREATE TABLE t1 (
|
|
ChargeID int(10) unsigned DEFAULT '0' 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)
|
|
) type=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;
|