[Groonga-commit] groonga/groonga at 5806464 [master] test: remove garbage "--output_columns" parameter

Back to archive index

Kouhei Sutou null+****@clear*****
Fri Mar 17 10:18:48 JST 2017


Kouhei Sutou	2017-03-17 10:18:48 +0900 (Fri, 17 Mar 2017)

  New Revision: 5806464c625f79efb18540ce58c5e8a7d556a936
  https://github.com/groonga/groonga/commit/5806464c625f79efb18540ce58c5e8a7d556a936

  Message:
    test: remove garbage "--output_columns" parameter

  Modified files:
    test/command/suite/select/function/highlight_html/empty_column.expected
    test/command/suite/select/function/highlight_html/empty_column.test
    test/command/suite/select/function/highlight_html/empty_query.expected
    test/command/suite/select/function/highlight_html/empty_query.test
    test/command/suite/select/function/highlight_html/no_hit.expected
    test/command/suite/select/function/highlight_html/no_hit.test
    test/command/suite/select/function/highlight_html/one_hit.expected
    test/command/suite/select/function/highlight_html/one_hit.test
    test/command/suite/select/function/highlight_html/one_keyword.expected
    test/command/suite/select/function/highlight_html/one_keyword.test
    test/command/suite/select/function/highlight_html/twice_hits.expected
    test/command/suite/select/function/highlight_html/twice_hits.test
    test/command/suite/select/function/highlight_html/two_keywords.expected
    test/command/suite/select/function/highlight_html/two_keywords.test

  Modified: test/command/suite/select/function/highlight_html/empty_column.expected (+1 -1)
===================================================================
--- test/command/suite/select/function/highlight_html/empty_column.expected    2017-03-16 15:46:43 +0900 (24209fc)
+++ test/command/suite/select/function/highlight_html/empty_column.expected    2017-03-17 10:18:48 +0900 (8d901cf)
@@ -11,5 +11,5 @@ load --table Entries
 {"body": ""}
 ]
 [[0,0.0,0.0],1]
-select Entries --output_columns   --query 'body:@groonga OR _id:1'   --output_columns 'highlight_html(body)'
+select Entries   --query 'body:@groonga OR _id:1'   --output_columns 'highlight_html(body)'
 [[0,0.0,0.0],[[[1],[["highlight_html",null]],[""]]]]

  Modified: test/command/suite/select/function/highlight_html/empty_column.test (+1 -1)
===================================================================
--- test/command/suite/select/function/highlight_html/empty_column.test    2017-03-16 15:46:43 +0900 (db13234)
+++ test/command/suite/select/function/highlight_html/empty_column.test    2017-03-17 10:18:48 +0900 (a5920b5)
@@ -9,6 +9,6 @@ load --table Entries
 {"body": ""}
 ]
 
-select Entries --output_columns \
+select Entries \
   --query 'body:@groonga OR _id:1' \
   --output_columns 'highlight_html(body)'

  Modified: test/command/suite/select/function/highlight_html/empty_query.expected (+1 -1)
===================================================================
--- test/command/suite/select/function/highlight_html/empty_query.expected    2017-03-16 15:46:43 +0900 (725ee26)
+++ test/command/suite/select/function/highlight_html/empty_query.expected    2017-03-17 10:18:48 +0900 (7244ff6)
@@ -11,7 +11,7 @@ load --table Entries
 {"body": "Mroonga is a MySQL storage engine based on Groonga. <b>Rroonga</b> is a Ruby binding of Groonga."}
 ]
 [[0,0.0,0.0],1]
-select Entries --output_columns   --match_columns body --query ''   --output_columns 'highlight_html(body)'
+select Entries   --match_columns body --query ''   --output_columns 'highlight_html(body)'
 [
   [
     0,

  Modified: test/command/suite/select/function/highlight_html/empty_query.test (+1 -1)
===================================================================
--- test/command/suite/select/function/highlight_html/empty_query.test    2017-03-16 15:46:43 +0900 (1229ea1)
+++ test/command/suite/select/function/highlight_html/empty_query.test    2017-03-17 10:18:48 +0900 (434b8e1)
@@ -9,6 +9,6 @@ load --table Entries
 {"body": "Mroonga is a MySQL storage engine based on Groonga. <b>Rroonga</b> is a Ruby binding of Groonga."}
 ]
 
-select Entries --output_columns \
+select Entries \
   --match_columns body --query '' \
   --output_columns 'highlight_html(body)'

  Modified: test/command/suite/select/function/highlight_html/no_hit.expected (+1 -1)
===================================================================
--- test/command/suite/select/function/highlight_html/no_hit.expected    2017-03-16 15:46:43 +0900 (9139d23)
+++ test/command/suite/select/function/highlight_html/no_hit.expected    2017-03-17 10:18:48 +0900 (87dcaa8)
@@ -11,5 +11,5 @@ load --table Entries
 {"body": "Mroonga is a MySQL storage engine based on Groonga. <b>Rroonga</b> is a Ruby binding of Groonga."}
 ]
 [[0,0.0,0.0],1]
-select Entries --output_columns   --match_columns body --query 'droonga'   --output_columns 'highlight_html(body)'
+select Entries   --match_columns body --query 'droonga'   --output_columns 'highlight_html(body)'
 [[0,0.0,0.0],[[[0],[["highlight_html",null]]]]]

  Modified: test/command/suite/select/function/highlight_html/no_hit.test (+1 -1)
===================================================================
--- test/command/suite/select/function/highlight_html/no_hit.test    2017-03-16 15:46:43 +0900 (47fab67)
+++ test/command/suite/select/function/highlight_html/no_hit.test    2017-03-17 10:18:48 +0900 (a1a59f3)
@@ -9,6 +9,6 @@ load --table Entries
 {"body": "Mroonga is a MySQL storage engine based on Groonga. <b>Rroonga</b> is a Ruby binding of Groonga."}
 ]
 
-select Entries --output_columns \
+select Entries \
   --match_columns body --query 'droonga' \
   --output_columns 'highlight_html(body)'

  Modified: test/command/suite/select/function/highlight_html/one_hit.expected (+1 -1)
===================================================================
--- test/command/suite/select/function/highlight_html/one_hit.expected    2017-03-16 15:46:43 +0900 (37d0f03)
+++ test/command/suite/select/function/highlight_html/one_hit.expected    2017-03-17 10:18:48 +0900 (acca83f)
@@ -11,7 +11,7 @@ load --table Entries
 {"body": "Mroonga is a MySQL storage engine based on Groonga. <b>Rroonga</b> is a Ruby binding of Groonga."}
 ]
 [[0,0.0,0.0],1]
-select Entries --output_columns   --match_columns body --query 'rroonga'   --output_columns 'highlight_html(body)'
+select Entries   --match_columns body --query 'rroonga'   --output_columns 'highlight_html(body)'
 [
   [
     0,

  Modified: test/command/suite/select/function/highlight_html/one_hit.test (+1 -1)
===================================================================
--- test/command/suite/select/function/highlight_html/one_hit.test    2017-03-16 15:46:43 +0900 (0929c76)
+++ test/command/suite/select/function/highlight_html/one_hit.test    2017-03-17 10:18:48 +0900 (4e1d936)
@@ -9,6 +9,6 @@ load --table Entries
 {"body": "Mroonga is a MySQL storage engine based on Groonga. <b>Rroonga</b> is a Ruby binding of Groonga."}
 ]
 
-select Entries --output_columns \
+select Entries \
   --match_columns body --query 'rroonga' \
   --output_columns 'highlight_html(body)'

  Modified: test/command/suite/select/function/highlight_html/one_keyword.expected (+1 -1)
===================================================================
--- test/command/suite/select/function/highlight_html/one_keyword.expected    2017-03-16 15:46:43 +0900 (39ceefd)
+++ test/command/suite/select/function/highlight_html/one_keyword.expected    2017-03-17 10:18:48 +0900 (0299642)
@@ -11,7 +11,7 @@ load --table Entries
 {"body": "Mroonga is a MySQL storage engine based on Groonga. <b>Rroonga</b> is a Ruby binding of Groonga."}
 ]
 [[0,0.0,0.0],1]
-select Entries --output_columns   --match_columns body --query 'groonga'   --output_columns 'highlight_html(body)'
+select Entries   --match_columns body --query 'groonga'   --output_columns 'highlight_html(body)'
 [
   [
     0,

  Modified: test/command/suite/select/function/highlight_html/one_keyword.test (+1 -1)
===================================================================
--- test/command/suite/select/function/highlight_html/one_keyword.test    2017-03-16 15:46:43 +0900 (15da84b)
+++ test/command/suite/select/function/highlight_html/one_keyword.test    2017-03-17 10:18:48 +0900 (debef26)
@@ -9,6 +9,6 @@ load --table Entries
 {"body": "Mroonga is a MySQL storage engine based on Groonga. <b>Rroonga</b> is a Ruby binding of Groonga."}
 ]
 
-select Entries --output_columns \
+select Entries \
   --match_columns body --query 'groonga' \
   --output_columns 'highlight_html(body)'

  Modified: test/command/suite/select/function/highlight_html/twice_hits.expected (+1 -1)
===================================================================
--- test/command/suite/select/function/highlight_html/twice_hits.expected    2017-03-16 15:46:43 +0900 (b4ecf45)
+++ test/command/suite/select/function/highlight_html/twice_hits.expected    2017-03-17 10:18:48 +0900 (5f622da)
@@ -11,7 +11,7 @@ load --table Entries
 {"body": "Mroonga is a MySQL storage engine based on Groonga. <b>Rroonga</b> is a Ruby binding of Groonga."}
 ]
 [[0,0.0,0.0],1]
-select Entries --output_columns   --match_columns body --query 'Groonga'   --output_columns 'highlight_html(body)'
+select Entries   --match_columns body --query 'Groonga'   --output_columns 'highlight_html(body)'
 [
   [
     0,

  Modified: test/command/suite/select/function/highlight_html/twice_hits.test (+1 -1)
===================================================================
--- test/command/suite/select/function/highlight_html/twice_hits.test    2017-03-16 15:46:43 +0900 (6cbb732)
+++ test/command/suite/select/function/highlight_html/twice_hits.test    2017-03-17 10:18:48 +0900 (4b1bcaf)
@@ -9,6 +9,6 @@ load --table Entries
 {"body": "Mroonga is a MySQL storage engine based on Groonga. <b>Rroonga</b> is a Ruby binding of Groonga."}
 ]
 
-select Entries --output_columns \
+select Entries \
   --match_columns body --query 'Groonga' \
   --output_columns 'highlight_html(body)'

  Modified: test/command/suite/select/function/highlight_html/two_keywords.expected (+1 -1)
===================================================================
--- test/command/suite/select/function/highlight_html/two_keywords.expected    2017-03-16 15:46:43 +0900 (e1adc76)
+++ test/command/suite/select/function/highlight_html/two_keywords.expected    2017-03-17 10:18:48 +0900 (cd5df95)
@@ -11,7 +11,7 @@ load --table Entries
 {"body": "Mroonga is a MySQL storage engine based on Groonga. <b>Rroonga</b> is a Ruby binding of Groonga."}
 ]
 [[0,0.0,0.0],1]
-select Entries --output_columns   --match_columns body --query 'groonga mysql'   --output_columns 'highlight_html(body)'
+select Entries   --match_columns body --query 'groonga mysql'   --output_columns 'highlight_html(body)'
 [
   [
     0,

  Modified: test/command/suite/select/function/highlight_html/two_keywords.test (+1 -1)
===================================================================
--- test/command/suite/select/function/highlight_html/two_keywords.test    2017-03-16 15:46:43 +0900 (9e67eea)
+++ test/command/suite/select/function/highlight_html/two_keywords.test    2017-03-17 10:18:48 +0900 (f6849f9)
@@ -9,6 +9,6 @@ load --table Entries
 {"body": "Mroonga is a MySQL storage engine based on Groonga. <b>Rroonga</b> is a Ruby binding of Groonga."}
 ]
 
-select Entries --output_columns \
+select Entries \
   --match_columns body --query 'groonga mysql' \
   --output_columns 'highlight_html(body)'
-------------- next part --------------
HTML����������������������������...
Download 



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