mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
ff908d18a2
include/m_string.h: Auto merged myisam/mi_create.c: Auto merged mysql-test/r/bdb-crash.result: Auto merged sql/handler.h: Auto merged mysql-test/r/grant_cache.result: Auto merged mysql-test/t/grant_cache.test: Auto merged sql/sql_cache.cc: Auto merged sql/sql_table.cc: Auto merged innobase/mem/mem0dbg.c: Merge with 4.0 mysql-test/r/myisam.result: Merge with 4.0 mysql-test/r/order_by.result: Merge with 4.0 mysql-test/t/bdb-crash.test: Merge with 4.0 mysql-test/t/myisam.test: Merge with 4.0 mysql-test/t/order_by.test: Merge with 4.0 sql/ha_berkeley.cc: Merge with 4.0 (use local code) sql/sql_select.cc: Merge with 4.0 to get fix for FORCE INDEX ... ORDER BY
46 lines
1.5 KiB
Text
46 lines
1.5 KiB
Text
drop table if exists t1;
|
|
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;
|
|
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;
|
|
create table t1 (a int) engine=bdb;
|
|
set autocommit=0;
|
|
insert into t1 values(1);
|
|
analyze table t1;
|
|
Table Op Msg_type Msg_text
|
|
test.t1 analyze status Operation need committed state
|
|
drop table t1;
|
|
create table t1 (a int) engine=bdb;
|
|
set autocommit=0;
|
|
insert into t1 values(1);
|
|
analyze table t1;
|
|
Table Op Msg_type Msg_text
|
|
test.t1 analyze status Operation need committed state
|
|
drop table t1;
|