Navigation Menu

Skip to content

Commit

Permalink
test: fix typos in UNIX epoch time...
Browse files Browse the repository at this point in the history
1900-... ->
1970-...

refs #1476
  • Loading branch information
kou committed Oct 24, 2012
1 parent 8c6f690 commit 0c3240f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -19,5 +19,5 @@ VALUES ('2038-01-19 03:14:08', '2038-01-19 03:14:08');
SELECT * FROM diaries;
id title created_at
1 2038-01-19 03:14:07 2038-01-19 03:14:07
2 2038-01-19 03:14:08 1900-01-01 00:00:00
2 2038-01-19 03:14:08 1970-01-01 00:00:00
DROP TABLE diaries;
Expand Up @@ -16,5 +16,5 @@ INSERT INTO diaries (title, created_at)
VALUES ('1000-01-01 00:00:00', '1000-01-01 00:00:00');
SELECT * FROM diaries;
id title created_at
1 1000-01-01 00:00:00 1900-01-01 00:00:00
1 1000-01-01 00:00:00 1970-01-01 00:00:00
DROP TABLE diaries;
Expand Up @@ -16,5 +16,5 @@ INSERT INTO diaries (title, created_at)
VALUES ('9999-12-31 23:59:59', '9999-12-31 23:59:59');
SELECT * FROM diaries;
id title created_at
1 9999-12-31 23:59:59 1900-01-01 00:00:00
1 9999-12-31 23:59:59 1970-01-01 00:00:00
DROP TABLE diaries;
Expand Up @@ -18,5 +18,5 @@ Warnings:
Warning 1264 Out of range value for column 'created_at' at row 1
SELECT * FROM diaries;
id title created_at
1 2012 1900-01-01 00:00:00
1 2012 1970-01-01 00:00:00
DROP TABLE diaries;

0 comments on commit 0c3240f

Please sign in to comment.