mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
a96e1b6954
client/mysqltest.c: Added --big-test argument libmysqld/lib_sql.cc: Reset error messages before new query. libmysqld/lib_vio.c: Fixed reading of results. mysql-test/mysql-test-run.sh: Added option --big mysql-test/r/multi_update.result: More multi-delete tests mysql-test/t/bdb-crash.test: Added missing test if BDB is supported mysql-test/t/multi_update.test: More multi-delete tests
35 lines
1 KiB
Text
35 lines
1 KiB
Text
-- source include/have_bdb.inc
|
|
# test for bug reported by Mark Steele
|
|
|
|
drop table if exists tblChange;
|
|
CREATE TABLE tblCharge (
|
|
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 tblCharge
|
|
VALUES(NULL,1,'2001-03-01',1,1,1,'New',NULL,NULL,'now');
|
|
COMMIT;
|
|
|
|
BEGIN;
|
|
UPDATE tblCharge SET ChargeAuthorizationMessage = 'blablabla' WHERE
|
|
ChargeID = 1;
|
|
COMMIT;
|
|
|
|
INSERT INTO tblCharge
|
|
VALUES(NULL,1,'2001-03-01',1,1,1,'New',NULL,NULL,'now');
|
|
select * from tblCharge;
|
|
drop table tblCharge;
|