[Groonga-mysql-commit] mroonga/mroonga [master] test: fix typos in UNIX epoch time...

Back to archive index

Kouhei Sutou null+****@clear*****
Wed Oct 24 19:10:54 JST 2012


Kouhei Sutou	2012-10-24 19:10:54 +0900 (Wed, 24 Oct 2012)

  New Revision: 0c3240f4f7187cf4de82c8b62120964f2aaa4c0c
  https://github.com/mroonga/mroonga/commit/0c3240f4f7187cf4de82c8b62120964f2aaa4c0c

  Log:
    test: fix typos in UNIX epoch time...
    
    1900-... ->
    1970-...
    
    refs #1476

  Modified files:
    test/sql/suite/mroonga/storage/column/datetime/32bit/r/2038.result
    test/sql/suite/mroonga/storage/column/datetime/32bit/r/before_unix_epoch.result
    test/sql/suite/mroonga/storage/column/datetime/32bit/r/max.result
    test/sql/suite/mroonga/storage/column/datetime/32bit/r/out_of_range.result

  Modified: test/sql/suite/mroonga/storage/column/datetime/32bit/r/2038.result (+1 -1)
===================================================================
--- test/sql/suite/mroonga/storage/column/datetime/32bit/r/2038.result    2012-10-24 19:00:11 +0900 (dabff49)
+++ test/sql/suite/mroonga/storage/column/datetime/32bit/r/2038.result    2012-10-24 19:10:54 +0900 (c89df1d)
@@ -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;

  Modified: test/sql/suite/mroonga/storage/column/datetime/32bit/r/before_unix_epoch.result (+1 -1)
===================================================================
--- test/sql/suite/mroonga/storage/column/datetime/32bit/r/before_unix_epoch.result    2012-10-24 19:00:11 +0900 (80d360a)
+++ test/sql/suite/mroonga/storage/column/datetime/32bit/r/before_unix_epoch.result    2012-10-24 19:10:54 +0900 (48efea0)
@@ -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;

  Modified: test/sql/suite/mroonga/storage/column/datetime/32bit/r/max.result (+1 -1)
===================================================================
--- test/sql/suite/mroonga/storage/column/datetime/32bit/r/max.result    2012-10-24 19:00:11 +0900 (619e74d)
+++ test/sql/suite/mroonga/storage/column/datetime/32bit/r/max.result    2012-10-24 19:10:54 +0900 (0999d65)
@@ -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;

  Modified: test/sql/suite/mroonga/storage/column/datetime/32bit/r/out_of_range.result (+1 -1)
===================================================================
--- test/sql/suite/mroonga/storage/column/datetime/32bit/r/out_of_range.result    2012-10-24 19:00:11 +0900 (34a5abb)
+++ test/sql/suite/mroonga/storage/column/datetime/32bit/r/out_of_range.result    2012-10-24 19:10:54 +0900 (505915b)
@@ -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;
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-mysql-commit mailing list
Back to archive index