[Groonga-commit] pgroonga/pgroonga at 21e4d0a [master] Use "and query" in tests for query

Back to archive index

Kouhei Sutou null+****@clear*****
Thu Jan 28 14:24:23 JST 2016


Kouhei Sutou	2016-01-28 14:24:23 +0900 (Thu, 28 Jan 2016)

  New Revision: 21e4d0ac15cd714edae4b4e161cf797ed8617e1b
  https://github.com/pgroonga/pgroonga/commit/21e4d0ac15cd714edae4b4e161cf797ed8617e1b

  Message:
    Use "and query" in tests for query

  Modified files:
    expected/full-text-search/text/single/query-contain/bitmapscan.out
    expected/full-text-search/text/single/query-contain/indexscan.out
    expected/full-text-search/text/single/query-contain/seqscan.out
    sql/full-text-search/text/single/query-contain/bitmapscan.sql
    sql/full-text-search/text/single/query-contain/indexscan.sql
    sql/full-text-search/text/single/query-contain/seqscan.sql

  Modified: expected/full-text-search/text/single/query-contain/bitmapscan.out (+1 -1)
===================================================================
--- expected/full-text-search/text/single/query-contain/bitmapscan.out    2016-01-28 14:22:59 +0900 (d63cbbd)
+++ expected/full-text-search/text/single/query-contain/bitmapscan.out    2016-01-28 14:24:23 +0900 (d027b11)
@@ -12,7 +12,7 @@ SET enable_indexscan = off;
 SET enable_bitmapscan = on;
 SELECT id, content
   FROM memos
- WHERE content &?> Array['rdbms', 'engine'];
+ WHERE content &?> Array['rdbms', 'groonga engine'];
  id |                 content                  
 ----+------------------------------------------
   1 | PostgreSQL is a RDBMS.

  Modified: expected/full-text-search/text/single/query-contain/indexscan.out (+2 -2)
===================================================================
--- expected/full-text-search/text/single/query-contain/indexscan.out    2016-01-28 14:22:59 +0900 (d0cbce7)
+++ expected/full-text-search/text/single/query-contain/indexscan.out    2016-01-28 14:24:23 +0900 (953c8ac)
@@ -12,11 +12,11 @@ SET enable_indexscan = on;
 SET enable_bitmapscan = off;
 SELECT id, content
   FROM memos
- WHERE content &?> Array['rdbms', 'engine'];
+ WHERE content &?> Array['rdbms', 'groonga engine'];
  id |                 content                  
 ----+------------------------------------------
-  1 | PostgreSQL is a RDBMS.
   2 | Groonga is fast full text search engine.
+  1 | PostgreSQL is a RDBMS.
 (2 rows)
 
 DROP TABLE memos;

  Modified: expected/full-text-search/text/single/query-contain/seqscan.out (+1 -1)
===================================================================
--- expected/full-text-search/text/single/query-contain/seqscan.out    2016-01-28 14:22:59 +0900 (3230f0f)
+++ expected/full-text-search/text/single/query-contain/seqscan.out    2016-01-28 14:24:23 +0900 (071b37e)
@@ -10,7 +10,7 @@ SET enable_indexscan = off;
 SET enable_bitmapscan = off;
 SELECT id, content
   FROM memos
- WHERE content &?> Array['rdbms', 'engine'];
+ WHERE content &?> Array['rdbms', 'groonga engine'];
  id |                 content                  
 ----+------------------------------------------
   1 | PostgreSQL is a RDBMS.

  Modified: sql/full-text-search/text/single/query-contain/bitmapscan.sql (+1 -1)
===================================================================
--- sql/full-text-search/text/single/query-contain/bitmapscan.sql    2016-01-28 14:22:59 +0900 (bc87afa)
+++ sql/full-text-search/text/single/query-contain/bitmapscan.sql    2016-01-28 14:24:23 +0900 (2a83918)
@@ -16,6 +16,6 @@ SET enable_bitmapscan = on;
 
 SELECT id, content
   FROM memos
- WHERE content &?> Array['rdbms', 'engine'];
+ WHERE content &?> Array['rdbms', 'groonga engine'];
 
 DROP TABLE memos;

  Modified: sql/full-text-search/text/single/query-contain/indexscan.sql (+1 -1)
===================================================================
--- sql/full-text-search/text/single/query-contain/indexscan.sql    2016-01-28 14:22:59 +0900 (62d512d)
+++ sql/full-text-search/text/single/query-contain/indexscan.sql    2016-01-28 14:24:23 +0900 (d682334)
@@ -16,6 +16,6 @@ SET enable_bitmapscan = off;
 
 SELECT id, content
   FROM memos
- WHERE content &?> Array['rdbms', 'engine'];
+ WHERE content &?> Array['rdbms', 'groonga engine'];
 
 DROP TABLE memos;

  Modified: sql/full-text-search/text/single/query-contain/seqscan.sql (+1 -1)
===================================================================
--- sql/full-text-search/text/single/query-contain/seqscan.sql    2016-01-28 14:22:59 +0900 (a1bae3a)
+++ sql/full-text-search/text/single/query-contain/seqscan.sql    2016-01-28 14:24:23 +0900 (14d34bb)
@@ -13,6 +13,6 @@ SET enable_bitmapscan = off;
 
 SELECT id, content
   FROM memos
- WHERE content &?> Array['rdbms', 'engine'];
+ WHERE content &?> Array['rdbms', 'groonga engine'];
 
 DROP TABLE memos;
-------------- next part --------------
HTML����������������������������...
Download 



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