diff options
author | sasha@mysql.sashanet.com <> | 2001-03-01 12:01:00 -0700 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2001-03-01 12:01:00 -0700 |
commit | 6a0faa9a65fa4f045b075ee051d2071c5fc55366 (patch) | |
tree | 3e07e3f3b2280c7035d5071643a1fcc2a8c1db18 /mysql-test/t/bdb-crash.test | |
parent | 1ba473903705ff7b20672511a58cfbb4f966225f (diff) | |
download | mariadb-git-6a0faa9a65fa4f045b075ee051d2071c5fc55366.tar.gz |
mysql-test/t/bdb-crash.test
make sure we get correct data
Diffstat (limited to 'mysql-test/t/bdb-crash.test')
-rw-r--r-- | mysql-test/t/bdb-crash.test | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mysql-test/t/bdb-crash.test b/mysql-test/t/bdb-crash.test index febcfcafde4..05ab7260d23 100644 --- a/mysql-test/t/bdb-crash.test +++ b/mysql-test/t/bdb-crash.test @@ -20,7 +20,7 @@ DEFAULT 'New' NOT NULL, BEGIN; INSERT INTO tblCharge -VALUES(NULL,1,CURRENT_DATE(),1,1,1,'New',NULL,NULL,UNIX_TIMESTAMP(NOW())); +VALUES(NULL,1,'2001-03-01',1,1,1,'New',NULL,NULL,'now'); COMMIT; BEGIN; @@ -29,5 +29,6 @@ ChargeID = 1; COMMIT; INSERT INTO tblCharge -VALUES(NULL,1,CURRENT_DATE(),1,1,1,'New',NULL,NULL,UNIX_TIMESTAMP(NOW())); +VALUES(NULL,1,'2001-03-01',1,1,1,'New',NULL,NULL,'now'); +select * from tblCharge; drop table tblCharge; |