[Groonga-commit] groonga/groonga at 68ed40a [master] test: add drilldown_filter test case without cache

Back to archive index

Kentaro Hayashi null+****@clear*****
Thu Apr 20 18:58:39 JST 2017


Kentaro Hayashi	2017-04-20 18:58:39 +0900 (Thu, 20 Apr 2017)

  New Revision: 68ed40aa7b37c9a35befde66112c79e1a122f868
  https://github.com/groonga/groonga/commit/68ed40aa7b37c9a35befde66112c79e1a122f868

  Merged 07bc0c6: Merge pull request #676 from kenhys/test-cache-drilldown-filter

  Message:
    test: add drilldown_filter test case without cache
    
    When the value of --drilldown_filter parameter is changed, Groonga
    returns result without using cache.

  Added files:
    test/command/suite/sharding/logical_select/cache/drilldown_filter.expected
    test/command/suite/sharding/logical_select/cache/drilldown_filter.test

  Added: test/command/suite/sharding/logical_select/cache/drilldown_filter.expected (+123 -0) 100644
===================================================================
--- /dev/null
+++ test/command/suite/sharding/logical_select/cache/drilldown_filter.expected    2017-04-20 18:58:39 +0900 (29676b1)
@@ -0,0 +1,123 @@
+plugin_register sharding
+[[0,0.0,0.0],true]
+table_create Memos_20170416 TABLE_NO_KEY
+[[0,0.0,0.0],true]
+column_create Memos_20170416 timestamp COLUMN_SCALAR Time
+[[0,0.0,0.0],true]
+column_create Memos_20170416 tag COLUMN_SCALAR ShortText
+[[0,0.0,0.0],true]
+column_create Memos_20170416 content COLUMN_SCALAR Text
+[[0,0.0,0.0],true]
+table_create Memos_20170417 TABLE_NO_KEY
+[[0,0.0,0.0],true]
+column_create Memos_20170417 timestamp COLUMN_SCALAR Time
+[[0,0.0,0.0],true]
+column_create Memos_20170417 tag COLUMN_SCALAR ShortText
+[[0,0.0,0.0],true]
+column_create Memos_20170417 content COLUMN_SCALAR Text
+[[0,0.0,0.0],true]
+load --table Memos_20170416
+[
+{"timestamp": "2017/04/16 00:00:00", "tag": "Groonga", "content": "Groonga is fast."},
+{"timestamp": "2017/04/16 01:00:00", "tag": "Mroonga", "content": "Mroonga is fast and easy to use."}
+]
+[[0,0.0,0.0],2]
+load --table Memos_20170417
+[
+{"timestamp": "2017/04/17 10:00:00", "tag": "PGroonga", "content": "PGroonga is fast and easy to use."},
+{"timestamp": "2017/04/17 11:00:00", "tag": "Rroonga", "content": "Rroonga is fast and easy to use."},
+{"timestamp": "2017/04/17 12:00:00", "tag": "Groonga", "content": "Groonga is very fast."}
+]
+[[0,0.0,0.0],3]
+logical_select Memos   --shard_key timestamp   --limit 0   --output_columns _id   --drilldown tag   --drilldown_filter "_nsubrecs > 0"
+[
+  [
+    0,
+    0.0,
+    0.0
+  ],
+  [
+    [
+      [
+        5
+      ],
+      [
+        [
+          "_id",
+          "UInt32"
+        ]
+      ]
+    ],
+    [
+      [
+        4
+      ],
+      [
+        [
+          "_key",
+          "ShortText"
+        ],
+        [
+          "_nsubrecs",
+          "Int32"
+        ]
+      ],
+      [
+        "Groonga",
+        2
+      ],
+      [
+        "Mroonga",
+        1
+      ],
+      [
+        "PGroonga",
+        1
+      ],
+      [
+        "Rroonga",
+        1
+      ]
+    ]
+  ]
+]
+logical_select Memos   --shard_key timestamp   --limit 0   --output_columns _id   --drilldown tag   --drilldown_filter "_nsubrecs > 1"
+[
+  [
+    0,
+    0.0,
+    0.0
+  ],
+  [
+    [
+      [
+        5
+      ],
+      [
+        [
+          "_id",
+          "UInt32"
+        ]
+      ]
+    ],
+    [
+      [
+        1
+      ],
+      [
+        [
+          "_key",
+          "ShortText"
+        ],
+        [
+          "_nsubrecs",
+          "Int32"
+        ]
+      ],
+      [
+        "Groonga",
+        2
+      ]
+    ]
+  ]
+]

  Added: test/command/suite/sharding/logical_select/cache/drilldown_filter.test (+41 -0) 100644
===================================================================
--- /dev/null
+++ test/command/suite/sharding/logical_select/cache/drilldown_filter.test    2017-04-20 18:58:39 +0900 (63f7605)
@@ -0,0 +1,41 @@
+#@on-error omit
+plugin_register sharding
+#@on-error default
+
+table_create Memos_20170416 TABLE_NO_KEY
+column_create Memos_20170416 timestamp COLUMN_SCALAR Time
+column_create Memos_20170416 tag COLUMN_SCALAR ShortText
+column_create Memos_20170416 content COLUMN_SCALAR Text
+
+table_create Memos_20170417 TABLE_NO_KEY
+column_create Memos_20170417 timestamp COLUMN_SCALAR Time
+column_create Memos_20170417 tag COLUMN_SCALAR ShortText
+column_create Memos_20170417 content COLUMN_SCALAR Text
+
+load --table Memos_20170416
+[
+{"timestamp": "2017/04/16 00:00:00", "tag": "Groonga", "content": "Groonga is fast."},
+{"timestamp": "2017/04/16 01:00:00", "tag": "Mroonga", "content": "Mroonga is fast and easy to use."}
+]
+
+load --table Memos_20170417
+[
+{"timestamp": "2017/04/17 10:00:00", "tag": "PGroonga", "content": "PGroonga is fast and easy to use."},
+{"timestamp": "2017/04/17 11:00:00", "tag": "Rroonga", "content": "Rroonga is fast and easy to use."},
+{"timestamp": "2017/04/17 12:00:00", "tag": "Groonga", "content": "Groonga is very fast."}
+]
+
+logical_select Memos \
+  --shard_key timestamp \
+  --limit 0 \
+  --output_columns _id \
+  --drilldown tag \
+  --drilldown_filter "_nsubrecs > 0"
+
+logical_select Memos \
+  --shard_key timestamp \
+  --limit 0 \
+  --output_columns _id \
+  --drilldown tag \
+  --drilldown_filter "_nsubrecs > 1"
+  
-------------- next part --------------
HTML����������������������������...
下载 



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