[Groonga-commit] groonga/groonga at 44734a4 [master] test: reconstruct directory structures

アーカイブの一覧に戻る

Kouhei Sutou null+****@clear*****
Sun Jul 2 01:10:47 JST 2017


Kouhei Sutou	2017-07-02 01:10:47 +0900 (Sun, 02 Jul 2017)

  New Revision: 44734a4a5b1c987e9782dcc79233cb8a57c7db4e
  https://github.com/groonga/groonga/commit/44734a4a5b1c987e9782dcc79233cb8a57c7db4e

  Message:
    test: reconstruct directory structures

  Copied files:
    test/command/suite/load/max/uint64.test
      (from test/command/suite/load/minmax/int32_min.test)
  Removed files:
    test/command/suite/load/uint64/max.test
  Renamed files:
    test/command/suite/load/max/int16.expected
      (from test/command/suite/load/minmax/int16_max.expected)
    test/command/suite/load/max/int16.test
      (from test/command/suite/load/minmax/int16_max.test)
    test/command/suite/load/max/int32.expected
      (from test/command/suite/load/minmax/int32_max.expected)
    test/command/suite/load/max/int32.test
      (from test/command/suite/load/minmax/int32_max.test)
    test/command/suite/load/max/int64.expected
      (from test/command/suite/load/minmax/int64_max.expected)
    test/command/suite/load/max/int64.test
      (from test/command/suite/load/minmax/int64_max.test)
    test/command/suite/load/max/int8.expected
      (from test/command/suite/load/minmax/uint8_max.expected)
    test/command/suite/load/max/int8.test
      (from test/command/suite/load/minmax/uint8_max.test)
    test/command/suite/load/max/uint16.expected
      (from test/command/suite/load/minmax/uint16_max.expected)
    test/command/suite/load/max/uint16.test
      (from test/command/suite/load/minmax/uint16_max.test)
    test/command/suite/load/max/uint32.expected
      (from test/command/suite/load/minmax/uint32_max.expected)
    test/command/suite/load/max/uint32.test
      (from test/command/suite/load/minmax/uint32_max.test)
    test/command/suite/load/max/uint64.expected
      (from test/command/suite/load/uint64/max.expected)
    test/command/suite/load/max/uint8.expected
      (from test/command/suite/load/minmax/int8_max.expected)
    test/command/suite/load/max/uint8.test
      (from test/command/suite/load/minmax/int8_max.test)
    test/command/suite/load/min/int16.expected
      (from test/command/suite/load/minmax/int16_min.expected)
    test/command/suite/load/min/int16.test
      (from test/command/suite/load/minmax/int16_min.test)
    test/command/suite/load/min/int32.expected
      (from test/command/suite/load/minmax/int32_min.expected)
    test/command/suite/load/min/int32.test
      (from test/command/suite/load/minmax/int32_min.test)
    test/command/suite/load/min/int64.expected
      (from test/command/suite/load/minmax/int64_min.expected)
    test/command/suite/load/min/int64.test
      (from test/command/suite/load/minmax/int64_min.test)
    test/command/suite/load/min/int8.expected
      (from test/command/suite/load/minmax/int8_min.expected)
    test/command/suite/load/min/int8.test
      (from test/command/suite/load/minmax/int8_min.test)

  Renamed: test/command/suite/load/max/int16.expected (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/max/int16.test (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/max/int32.expected (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/max/int32.test (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/max/int64.expected (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/max/int64.test (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/max/int8.expected (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/max/int8.test (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/max/uint16.expected (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/max/uint16.test (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/max/uint32.expected (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/max/uint32.test (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/max/uint64.expected (+4 -4) 71%
===================================================================
--- test/command/suite/load/uint64/max.expected    2017-07-02 00:45:32 +0900 (fdcf2b1)
+++ test/command/suite/load/max/uint64.expected    2017-07-02 01:10:47 +0900 (c460349)
@@ -1,13 +1,13 @@
-table_create Numbers TABLE_NO_KEY
+table_create Values TABLE_NO_KEY
 [[0,0.0,0.0],true]
-column_create Numbers value COLUMN_SCALAR UInt64
+column_create Values value COLUMN_SCALAR UInt64
 [[0,0.0,0.0],true]
-load --table Numbers
+load --table Values
 [
 {"value": 18446744073709551615}
 ]
 [[0,0.0,0.0],1]
-select Numbers
+select Values --output_columns _id,value
 [
   [
     0,

  Copied: test/command/suite/load/max/uint64.test (+2 -2) 55%
===================================================================
--- test/command/suite/load/minmax/int32_min.test    2017-07-02 00:45:32 +0900 (faa270c)
+++ test/command/suite/load/max/uint64.test    2017-07-02 01:10:47 +0900 (ad49f33)
@@ -1,9 +1,9 @@
 table_create Values TABLE_NO_KEY
-column_create Values value COLUMN_SCALAR Int32
+column_create Values value COLUMN_SCALAR UInt64
 
 load --table Values
 [
-{"value": -2147483648}
+{"value": 18446744073709551615}
 ]
 
 select Values --output_columns _id,value

  Renamed: test/command/suite/load/max/uint8.expected (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/max/uint8.test (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/min/int16.expected (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/min/int16.test (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/min/int32.expected (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/min/int32.test (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/min/int64.expected (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/min/int64.test (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/min/int8.expected (+0 -0) 100%
===================================================================

  Renamed: test/command/suite/load/min/int8.test (+0 -0) 100%
===================================================================

  Deleted: test/command/suite/load/uint64/max.test (+0 -9) 100644
===================================================================
--- test/command/suite/load/uint64/max.test    2017-07-02 00:45:32 +0900 (bc4470b)
+++ /dev/null
@@ -1,9 +0,0 @@
-table_create Numbers TABLE_NO_KEY
-column_create Numbers value COLUMN_SCALAR UInt64
-
-load --table Numbers
-[
-{"value": 18446744073709551615}
-]
-
-select Numbers
-------------- next part --------------
HTML����������������������������...
ダウンロード 



More information about the Groonga-commit mailing list
アーカイブの一覧に戻る