diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-03-01 12:01:00 -0700 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-03-01 12:01:00 -0700 |
commit | d0ec4469701ac9b03630489682c50c1a771e73a6 (patch) | |
tree | 3e07e3f3b2280c7035d5071643a1fcc2a8c1db18 /mysql-test/t/bdb-crash.test | |
parent | a9322ae00bfe74b28839f781c1281717d7058b4f (diff) | |
download | mariadb-git-d0ec4469701ac9b03630489682c50c1a771e73a6.tar.gz |
mysql-test/t/bdb-crash.test
make sure we get correct data
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; |