mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
f33fb18677
Update test results for MySQL 4.0 extra/resolveip.c: Fix for SCO mysql-test/r/backup.result: Update test results for MySQL 4.0 mysql-test/r/bdb-crash.result: Update test results for MySQL 4.0 mysql-test/r/bdb-deadlock.result: Update test results for MySQL 4.0 mysys/mf_casecnv.c: Patch for SCO mysys/mf_qsort.c: Patch for SCO mysys/my_compress.c: Patch for SCO strings/ctype.c: Patch for SCO
32 lines
1.1 KiB
Text
32 lines
1.1 KiB
Text
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;
|
|
ChargeID ServiceID ChargeDate ChargeAmount FedTaxes ProvTaxes ChargeStatus ChargeAuthorizationMessage ChargeComment ChargeTimeStamp
|
|
1 1 2001-03-01 1.00 1.00 1.00 New blablabla NULL now
|
|
2 1 2001-03-01 1.00 1.00 1.00 New NULL NULL now
|
|
drop table t1;
|