[Groonga-commit] groonga/groonga at 150cc1c [master] test: use more suitable table and column name

Back to archive index

Kouhei Sutou null+****@clear*****
Thu Feb 5 15:23:49 JST 2015


Kouhei Sutou	2015-02-05 15:23:49 +0900 (Thu, 05 Feb 2015)

  New Revision: 150cc1c90e5bce5b2b8fb7fcb339413bb8cb3a0b
  https://github.com/groonga/groonga/commit/150cc1c90e5bce5b2b8fb7fcb339413bb8cb3a0b

  Message:
    test: use more suitable table and column name

  Modified files:
    test/command/suite/sharding/logical_count/no_condition/range/index/max_exclude.expected
    test/command/suite/sharding/logical_count/no_condition/range/index/max_exclude.test
    test/command/suite/sharding/logical_count/no_condition/range/index/max_include.expected
    test/command/suite/sharding/logical_count/no_condition/range/index/max_include.test
    test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude.expected
    test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude.test
    test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude_max_exclude.expected
    test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude_max_exclude.test
    test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude_max_include.expected
    test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude_max_include.test
    test/command/suite/sharding/logical_count/no_condition/range/index/min_include.expected
    test/command/suite/sharding/logical_count/no_condition/range/index/min_include.test
    test/command/suite/sharding/logical_count/no_condition/range/index/min_include_max_exclude.expected
    test/command/suite/sharding/logical_count/no_condition/range/index/min_include_max_exclude.test
    test/command/suite/sharding/logical_count/no_condition/range/index/min_include_max_include.expected
    test/command/suite/sharding/logical_count/no_condition/range/index/min_include_max_include.test

  Modified: test/command/suite/sharding/logical_count/no_condition/range/index/max_exclude.expected (+6 -6)
===================================================================
--- test/command/suite/sharding/logical_count/no_condition/range/index/max_exclude.expected    2015-02-05 15:23:06 +0900 (75d8efd)
+++ test/command/suite/sharding/logical_count/no_condition/range/index/max_exclude.expected    2015-02-05 15:23:49 +0900 (ff3c1f6)
@@ -4,25 +4,25 @@ table_create Logs_20150203 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150203 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150203 TABLE_PAT_KEY Time
+table_create Times_20150203 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150203 index COLUMN_INDEX Logs_20150203 timestamp
+column_create Times_20150203 timestamp_index COLUMN_INDEX Logs_20150203 timestamp
 [[0,0.0,0.0],true]
 table_create Logs_20150204 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150204 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150204 TABLE_PAT_KEY Time
+table_create Times_20150204 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150204 index COLUMN_INDEX Logs_20150204 timestamp
+column_create Times_20150204 timestamp_index COLUMN_INDEX Logs_20150204 timestamp
 [[0,0.0,0.0],true]
 table_create Logs_20150205 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150205 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150205 TABLE_PAT_KEY Time
+table_create Times_20150205 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150205 index COLUMN_INDEX Logs_20150205 timestamp
+column_create Times_20150205 timestamp_index COLUMN_INDEX Logs_20150205 timestamp
 [[0,0.0,0.0],true]
 load --table Logs_20150203
 [

  Modified: test/command/suite/sharding/logical_count/no_condition/range/index/max_exclude.test (+6 -6)
===================================================================
--- test/command/suite/sharding/logical_count/no_condition/range/index/max_exclude.test    2015-02-05 15:23:06 +0900 (8ca2aa3)
+++ test/command/suite/sharding/logical_count/no_condition/range/index/max_exclude.test    2015-02-05 15:23:49 +0900 (a831922)
@@ -4,18 +4,18 @@ register sharding
 
 table_create Logs_20150203 TABLE_NO_KEY
 column_create Logs_20150203 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150203 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150203 index COLUMN_INDEX Logs_20150203 timestamp
+table_create Times_20150203 TABLE_PAT_KEY Time
+column_create Times_20150203 timestamp_index COLUMN_INDEX Logs_20150203 timestamp
 
 table_create Logs_20150204 TABLE_NO_KEY
 column_create Logs_20150204 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150204 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150204 index COLUMN_INDEX Logs_20150204 timestamp
+table_create Times_20150204 TABLE_PAT_KEY Time
+column_create Times_20150204 timestamp_index COLUMN_INDEX Logs_20150204 timestamp
 
 table_create Logs_20150205 TABLE_NO_KEY
 column_create Logs_20150205 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150205 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150205 index COLUMN_INDEX Logs_20150205 timestamp
+table_create Times_20150205 TABLE_PAT_KEY Time
+column_create Times_20150205 timestamp_index COLUMN_INDEX Logs_20150205 timestamp
 
 load --table Logs_20150203
 [

  Modified: test/command/suite/sharding/logical_count/no_condition/range/index/max_include.expected (+6 -6)
===================================================================
--- test/command/suite/sharding/logical_count/no_condition/range/index/max_include.expected    2015-02-05 15:23:06 +0900 (5f43d8a)
+++ test/command/suite/sharding/logical_count/no_condition/range/index/max_include.expected    2015-02-05 15:23:49 +0900 (8773cd2)
@@ -4,25 +4,25 @@ table_create Logs_20150203 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150203 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150203 TABLE_PAT_KEY Time
+table_create Times_20150203 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150203 index COLUMN_INDEX Logs_20150203 timestamp
+column_create Times_20150203 timestamp_index COLUMN_INDEX Logs_20150203 timestamp
 [[0,0.0,0.0],true]
 table_create Logs_20150204 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150204 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150204 TABLE_PAT_KEY Time
+table_create Times_20150204 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150204 index COLUMN_INDEX Logs_20150204 timestamp
+column_create Times_20150204 timestamp_index COLUMN_INDEX Logs_20150204 timestamp
 [[0,0.0,0.0],true]
 table_create Logs_20150205 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150205 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150205 TABLE_PAT_KEY Time
+table_create Times_20150205 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150205 index COLUMN_INDEX Logs_20150205 timestamp
+column_create Times_20150205 timestamp_index COLUMN_INDEX Logs_20150205 timestamp
 [[0,0.0,0.0],true]
 load --table Logs_20150203
 [

  Modified: test/command/suite/sharding/logical_count/no_condition/range/index/max_include.test (+6 -6)
===================================================================
--- test/command/suite/sharding/logical_count/no_condition/range/index/max_include.test    2015-02-05 15:23:06 +0900 (eeea74f)
+++ test/command/suite/sharding/logical_count/no_condition/range/index/max_include.test    2015-02-05 15:23:49 +0900 (1f33d5a)
@@ -4,18 +4,18 @@ register sharding
 
 table_create Logs_20150203 TABLE_NO_KEY
 column_create Logs_20150203 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150203 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150203 index COLUMN_INDEX Logs_20150203 timestamp
+table_create Times_20150203 TABLE_PAT_KEY Time
+column_create Times_20150203 timestamp_index COLUMN_INDEX Logs_20150203 timestamp
 
 table_create Logs_20150204 TABLE_NO_KEY
 column_create Logs_20150204 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150204 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150204 index COLUMN_INDEX Logs_20150204 timestamp
+table_create Times_20150204 TABLE_PAT_KEY Time
+column_create Times_20150204 timestamp_index COLUMN_INDEX Logs_20150204 timestamp
 
 table_create Logs_20150205 TABLE_NO_KEY
 column_create Logs_20150205 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150205 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150205 index COLUMN_INDEX Logs_20150205 timestamp
+table_create Times_20150205 TABLE_PAT_KEY Time
+column_create Times_20150205 timestamp_index COLUMN_INDEX Logs_20150205 timestamp
 
 load --table Logs_20150203
 [

  Modified: test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude.expected (+6 -6)
===================================================================
--- test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude.expected    2015-02-05 15:23:06 +0900 (a141535)
+++ test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude.expected    2015-02-05 15:23:49 +0900 (ec3a59b)
@@ -4,25 +4,25 @@ table_create Logs_20150203 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150203 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150203 TABLE_PAT_KEY Time
+table_create Times_20150203 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150203 index COLUMN_INDEX Logs_20150203 timestamp
+column_create Times_20150203 timestamp_index COLUMN_INDEX Logs_20150203 timestamp
 [[0,0.0,0.0],true]
 table_create Logs_20150204 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150204 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150204 TABLE_PAT_KEY Time
+table_create Times_20150204 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150204 index COLUMN_INDEX Logs_20150204 timestamp
+column_create Times_20150204 timestamp_index COLUMN_INDEX Logs_20150204 timestamp
 [[0,0.0,0.0],true]
 table_create Logs_20150205 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150205 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150205 TABLE_PAT_KEY Time
+table_create Times_20150205 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150205 index COLUMN_INDEX Logs_20150205 timestamp
+column_create Times_20150205 timestamp_index COLUMN_INDEX Logs_20150205 timestamp
 [[0,0.0,0.0],true]
 load --table Logs_20150203
 [

  Modified: test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude.test (+6 -6)
===================================================================
--- test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude.test    2015-02-05 15:23:06 +0900 (523813c)
+++ test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude.test    2015-02-05 15:23:49 +0900 (75d6412)
@@ -4,18 +4,18 @@ register sharding
 
 table_create Logs_20150203 TABLE_NO_KEY
 column_create Logs_20150203 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150203 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150203 index COLUMN_INDEX Logs_20150203 timestamp
+table_create Times_20150203 TABLE_PAT_KEY Time
+column_create Times_20150203 timestamp_index COLUMN_INDEX Logs_20150203 timestamp
 
 table_create Logs_20150204 TABLE_NO_KEY
 column_create Logs_20150204 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150204 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150204 index COLUMN_INDEX Logs_20150204 timestamp
+table_create Times_20150204 TABLE_PAT_KEY Time
+column_create Times_20150204 timestamp_index COLUMN_INDEX Logs_20150204 timestamp
 
 table_create Logs_20150205 TABLE_NO_KEY
 column_create Logs_20150205 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150205 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150205 index COLUMN_INDEX Logs_20150205 timestamp
+table_create Times_20150205 TABLE_PAT_KEY Time
+column_create Times_20150205 timestamp_index COLUMN_INDEX Logs_20150205 timestamp
 
 load --table Logs_20150203
 [

  Modified: test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude_max_exclude.expected (+6 -6)
===================================================================
--- test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude_max_exclude.expected    2015-02-05 15:23:06 +0900 (7d0946c)
+++ test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude_max_exclude.expected    2015-02-05 15:23:49 +0900 (0bc805c)
@@ -4,25 +4,25 @@ table_create Logs_20150203 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150203 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150203 TABLE_PAT_KEY Time
+table_create Times_20150203 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150203 index COLUMN_INDEX Logs_20150203 timestamp
+column_create Times_20150203 timestamp_index COLUMN_INDEX Logs_20150203 timestamp
 [[0,0.0,0.0],true]
 table_create Logs_20150204 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150204 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150204 TABLE_PAT_KEY Time
+table_create Times_20150204 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150204 index COLUMN_INDEX Logs_20150204 timestamp
+column_create Times_20150204 timestamp_index COLUMN_INDEX Logs_20150204 timestamp
 [[0,0.0,0.0],true]
 table_create Logs_20150205 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150205 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150205 TABLE_PAT_KEY Time
+table_create Times_20150205 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150205 index COLUMN_INDEX Logs_20150205 timestamp
+column_create Times_20150205 timestamp_index COLUMN_INDEX Logs_20150205 timestamp
 [[0,0.0,0.0],true]
 load --table Logs_20150203
 [

  Modified: test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude_max_exclude.test (+6 -6)
===================================================================
--- test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude_max_exclude.test    2015-02-05 15:23:06 +0900 (96cda24)
+++ test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude_max_exclude.test    2015-02-05 15:23:49 +0900 (6da7604)
@@ -4,18 +4,18 @@ register sharding
 
 table_create Logs_20150203 TABLE_NO_KEY
 column_create Logs_20150203 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150203 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150203 index COLUMN_INDEX Logs_20150203 timestamp
+table_create Times_20150203 TABLE_PAT_KEY Time
+column_create Times_20150203 timestamp_index COLUMN_INDEX Logs_20150203 timestamp
 
 table_create Logs_20150204 TABLE_NO_KEY
 column_create Logs_20150204 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150204 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150204 index COLUMN_INDEX Logs_20150204 timestamp
+table_create Times_20150204 TABLE_PAT_KEY Time
+column_create Times_20150204 timestamp_index COLUMN_INDEX Logs_20150204 timestamp
 
 table_create Logs_20150205 TABLE_NO_KEY
 column_create Logs_20150205 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150205 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150205 index COLUMN_INDEX Logs_20150205 timestamp
+table_create Times_20150205 TABLE_PAT_KEY Time
+column_create Times_20150205 timestamp_index COLUMN_INDEX Logs_20150205 timestamp
 
 load --table Logs_20150203
 [

  Modified: test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude_max_include.expected (+6 -6)
===================================================================
--- test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude_max_include.expected    2015-02-05 15:23:06 +0900 (d9a5a65)
+++ test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude_max_include.expected    2015-02-05 15:23:49 +0900 (c47abb9)
@@ -4,25 +4,25 @@ table_create Logs_20150203 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150203 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150203 TABLE_PAT_KEY Time
+table_create Times_20150203 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150203 index COLUMN_INDEX Logs_20150203 timestamp
+column_create Times_20150203 timestamp_index COLUMN_INDEX Logs_20150203 timestamp
 [[0,0.0,0.0],true]
 table_create Logs_20150204 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150204 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150204 TABLE_PAT_KEY Time
+table_create Times_20150204 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150204 index COLUMN_INDEX Logs_20150204 timestamp
+column_create Times_20150204 timestamp_index COLUMN_INDEX Logs_20150204 timestamp
 [[0,0.0,0.0],true]
 table_create Logs_20150205 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150205 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150205 TABLE_PAT_KEY Time
+table_create Times_20150205 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150205 index COLUMN_INDEX Logs_20150205 timestamp
+column_create Times_20150205 timestamp_index COLUMN_INDEX Logs_20150205 timestamp
 [[0,0.0,0.0],true]
 load --table Logs_20150203
 [

  Modified: test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude_max_include.test (+6 -6)
===================================================================
--- test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude_max_include.test    2015-02-05 15:23:06 +0900 (79b3f6b)
+++ test/command/suite/sharding/logical_count/no_condition/range/index/min_exclude_max_include.test    2015-02-05 15:23:49 +0900 (f4ecba4)
@@ -4,18 +4,18 @@ register sharding
 
 table_create Logs_20150203 TABLE_NO_KEY
 column_create Logs_20150203 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150203 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150203 index COLUMN_INDEX Logs_20150203 timestamp
+table_create Times_20150203 TABLE_PAT_KEY Time
+column_create Times_20150203 timestamp_index COLUMN_INDEX Logs_20150203 timestamp
 
 table_create Logs_20150204 TABLE_NO_KEY
 column_create Logs_20150204 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150204 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150204 index COLUMN_INDEX Logs_20150204 timestamp
+table_create Times_20150204 TABLE_PAT_KEY Time
+column_create Times_20150204 timestamp_index COLUMN_INDEX Logs_20150204 timestamp
 
 table_create Logs_20150205 TABLE_NO_KEY
 column_create Logs_20150205 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150205 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150205 index COLUMN_INDEX Logs_20150205 timestamp
+table_create Times_20150205 TABLE_PAT_KEY Time
+column_create Times_20150205 timestamp_index COLUMN_INDEX Logs_20150205 timestamp
 
 load --table Logs_20150203
 [

  Modified: test/command/suite/sharding/logical_count/no_condition/range/index/min_include.expected (+6 -6)
===================================================================
--- test/command/suite/sharding/logical_count/no_condition/range/index/min_include.expected    2015-02-05 15:23:06 +0900 (e06a1b7)
+++ test/command/suite/sharding/logical_count/no_condition/range/index/min_include.expected    2015-02-05 15:23:49 +0900 (4a5b035)
@@ -4,25 +4,25 @@ table_create Logs_20150203 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150203 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150203 TABLE_PAT_KEY Time
+table_create Times_20150203 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150203 index COLUMN_INDEX Logs_20150203 timestamp
+column_create Times_20150203 timestamp_index COLUMN_INDEX Logs_20150203 timestamp
 [[0,0.0,0.0],true]
 table_create Logs_20150204 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150204 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150204 TABLE_PAT_KEY Time
+table_create Times_20150204 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150204 index COLUMN_INDEX Logs_20150204 timestamp
+column_create Times_20150204 timestamp_index COLUMN_INDEX Logs_20150204 timestamp
 [[0,0.0,0.0],true]
 table_create Logs_20150205 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150205 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150205 TABLE_PAT_KEY Time
+table_create Times_20150205 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150205 index COLUMN_INDEX Logs_20150205 timestamp
+column_create Times_20150205 timestamp_index COLUMN_INDEX Logs_20150205 timestamp
 [[0,0.0,0.0],true]
 load --table Logs_20150203
 [

  Modified: test/command/suite/sharding/logical_count/no_condition/range/index/min_include.test (+6 -6)
===================================================================
--- test/command/suite/sharding/logical_count/no_condition/range/index/min_include.test    2015-02-05 15:23:06 +0900 (7e509fa)
+++ test/command/suite/sharding/logical_count/no_condition/range/index/min_include.test    2015-02-05 15:23:49 +0900 (5187b19)
@@ -4,18 +4,18 @@ register sharding
 
 table_create Logs_20150203 TABLE_NO_KEY
 column_create Logs_20150203 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150203 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150203 index COLUMN_INDEX Logs_20150203 timestamp
+table_create Times_20150203 TABLE_PAT_KEY Time
+column_create Times_20150203 timestamp_index COLUMN_INDEX Logs_20150203 timestamp
 
 table_create Logs_20150204 TABLE_NO_KEY
 column_create Logs_20150204 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150204 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150204 index COLUMN_INDEX Logs_20150204 timestamp
+table_create Times_20150204 TABLE_PAT_KEY Time
+column_create Times_20150204 timestamp_index COLUMN_INDEX Logs_20150204 timestamp
 
 table_create Logs_20150205 TABLE_NO_KEY
 column_create Logs_20150205 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150205 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150205 index COLUMN_INDEX Logs_20150205 timestamp
+table_create Times_20150205 TABLE_PAT_KEY Time
+column_create Times_20150205 timestamp_index COLUMN_INDEX Logs_20150205 timestamp
 
 load --table Logs_20150203
 [

  Modified: test/command/suite/sharding/logical_count/no_condition/range/index/min_include_max_exclude.expected (+6 -6)
===================================================================
--- test/command/suite/sharding/logical_count/no_condition/range/index/min_include_max_exclude.expected    2015-02-05 15:23:06 +0900 (872d822)
+++ test/command/suite/sharding/logical_count/no_condition/range/index/min_include_max_exclude.expected    2015-02-05 15:23:49 +0900 (5ad26ce)
@@ -4,25 +4,25 @@ table_create Logs_20150203 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150203 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150203 TABLE_PAT_KEY Time
+table_create Times_20150203 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150203 index COLUMN_INDEX Logs_20150203 timestamp
+column_create Times_20150203 timestamp_index COLUMN_INDEX Logs_20150203 timestamp
 [[0,0.0,0.0],true]
 table_create Logs_20150204 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150204 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150204 TABLE_PAT_KEY Time
+table_create Times_20150204 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150204 index COLUMN_INDEX Logs_20150204 timestamp
+column_create Times_20150204 timestamp_index COLUMN_INDEX Logs_20150204 timestamp
 [[0,0.0,0.0],true]
 table_create Logs_20150205 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150205 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150205 TABLE_PAT_KEY Time
+table_create Times_20150205 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150205 index COLUMN_INDEX Logs_20150205 timestamp
+column_create Times_20150205 timestamp_index COLUMN_INDEX Logs_20150205 timestamp
 [[0,0.0,0.0],true]
 load --table Logs_20150203
 [

  Modified: test/command/suite/sharding/logical_count/no_condition/range/index/min_include_max_exclude.test (+6 -6)
===================================================================
--- test/command/suite/sharding/logical_count/no_condition/range/index/min_include_max_exclude.test    2015-02-05 15:23:06 +0900 (b5ff782)
+++ test/command/suite/sharding/logical_count/no_condition/range/index/min_include_max_exclude.test    2015-02-05 15:23:49 +0900 (0e818ae)
@@ -4,18 +4,18 @@ register sharding
 
 table_create Logs_20150203 TABLE_NO_KEY
 column_create Logs_20150203 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150203 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150203 index COLUMN_INDEX Logs_20150203 timestamp
+table_create Times_20150203 TABLE_PAT_KEY Time
+column_create Times_20150203 timestamp_index COLUMN_INDEX Logs_20150203 timestamp
 
 table_create Logs_20150204 TABLE_NO_KEY
 column_create Logs_20150204 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150204 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150204 index COLUMN_INDEX Logs_20150204 timestamp
+table_create Times_20150204 TABLE_PAT_KEY Time
+column_create Times_20150204 timestamp_index COLUMN_INDEX Logs_20150204 timestamp
 
 table_create Logs_20150205 TABLE_NO_KEY
 column_create Logs_20150205 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150205 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150205 index COLUMN_INDEX Logs_20150205 timestamp
+table_create Times_20150205 TABLE_PAT_KEY Time
+column_create Times_20150205 timestamp_index COLUMN_INDEX Logs_20150205 timestamp
 
 load --table Logs_20150203
 [

  Modified: test/command/suite/sharding/logical_count/no_condition/range/index/min_include_max_include.expected (+6 -6)
===================================================================
--- test/command/suite/sharding/logical_count/no_condition/range/index/min_include_max_include.expected    2015-02-05 15:23:06 +0900 (c4ab8a8)
+++ test/command/suite/sharding/logical_count/no_condition/range/index/min_include_max_include.expected    2015-02-05 15:23:49 +0900 (f007b0c)
@@ -4,25 +4,25 @@ table_create Logs_20150203 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150203 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150203 TABLE_PAT_KEY Time
+table_create Times_20150203 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150203 index COLUMN_INDEX Logs_20150203 timestamp
+column_create Times_20150203 timestamp_index COLUMN_INDEX Logs_20150203 timestamp
 [[0,0.0,0.0],true]
 table_create Logs_20150204 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150204 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150204 TABLE_PAT_KEY Time
+table_create Times_20150204 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150204 index COLUMN_INDEX Logs_20150204 timestamp
+column_create Times_20150204 timestamp_index COLUMN_INDEX Logs_20150204 timestamp
 [[0,0.0,0.0],true]
 table_create Logs_20150205 TABLE_NO_KEY
 [[0,0.0,0.0],true]
 column_create Logs_20150205 timestamp COLUMN_SCALAR Time
 [[0,0.0,0.0],true]
-table_create TimestampIndex_20150205 TABLE_PAT_KEY Time
+table_create Times_20150205 TABLE_PAT_KEY Time
 [[0,0.0,0.0],true]
-column_create TimestampIndex_20150205 index COLUMN_INDEX Logs_20150205 timestamp
+column_create Times_20150205 timestamp_index COLUMN_INDEX Logs_20150205 timestamp
 [[0,0.0,0.0],true]
 load --table Logs_20150203
 [

  Modified: test/command/suite/sharding/logical_count/no_condition/range/index/min_include_max_include.test (+6 -6)
===================================================================
--- test/command/suite/sharding/logical_count/no_condition/range/index/min_include_max_include.test    2015-02-05 15:23:06 +0900 (5a858c2)
+++ test/command/suite/sharding/logical_count/no_condition/range/index/min_include_max_include.test    2015-02-05 15:23:49 +0900 (76e70f0)
@@ -4,18 +4,18 @@ register sharding
 
 table_create Logs_20150203 TABLE_NO_KEY
 column_create Logs_20150203 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150203 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150203 index COLUMN_INDEX Logs_20150203 timestamp
+table_create Times_20150203 TABLE_PAT_KEY Time
+column_create Times_20150203 timestamp_index COLUMN_INDEX Logs_20150203 timestamp
 
 table_create Logs_20150204 TABLE_NO_KEY
 column_create Logs_20150204 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150204 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150204 index COLUMN_INDEX Logs_20150204 timestamp
+table_create Times_20150204 TABLE_PAT_KEY Time
+column_create Times_20150204 timestamp_index COLUMN_INDEX Logs_20150204 timestamp
 
 table_create Logs_20150205 TABLE_NO_KEY
 column_create Logs_20150205 timestamp COLUMN_SCALAR Time
-table_create TimestampIndex_20150205 TABLE_PAT_KEY Time
-column_create TimestampIndex_20150205 index COLUMN_INDEX Logs_20150205 timestamp
+table_create Times_20150205 TABLE_PAT_KEY Time
+column_create Times_20150205 timestamp_index COLUMN_INDEX Logs_20150205 timestamp
 
 load --table Logs_20150203
 [
-------------- next part --------------
HTML����������������������������...
Download 



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