summaryrefslogtreecommitdiff
path: root/mysql-test/t
diff options
context:
space:
mode:
authorunknown <sasha@mysql.sashanet.com>2001-03-01 12:01:00 -0700
committerunknown <sasha@mysql.sashanet.com>2001-03-01 12:01:00 -0700
commitd0ec4469701ac9b03630489682c50c1a771e73a6 (patch)
tree3e07e3f3b2280c7035d5071643a1fcc2a8c1db18 /mysql-test/t
parenta9322ae00bfe74b28839f781c1281717d7058b4f (diff)
downloadmariadb-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')
-rw-r--r--mysql-test/t/bdb-crash.test5
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;