[Groonga-commit] droonga/fluent-plugin-droonga at fd46aab [master] Fix mismatched collector name "add" => "or"

Back to archive index

YUKI Hiroshi null+****@clear*****
Thu Mar 6 14:18:16 JST 2014


YUKI Hiroshi	2014-03-06 14:18:16 +0900 (Thu, 06 Mar 2014)

  New Revision: fd46aab17d247280857756800b91f7ba427d1df0
  https://github.com/droonga/fluent-plugin-droonga/commit/fd46aab17d247280857756800b91f7ba427d1df0

  Message:
    Fix mismatched collector name "add" => "or"

  Modified files:
    lib/droonga/collectors.rb
    lib/droonga/plugins/groonga/column_create.rb
    lib/droonga/plugins/groonga/table_create.rb
    lib/droonga/plugins/groonga/table_remove.rb
  Renamed files:
    lib/droonga/collectors/or.rb
      (from lib/droonga/collectors/add.rb)

  Modified: lib/droonga/collectors.rb (+1 -1)
===================================================================
--- lib/droonga/collectors.rb    2014-02-28 17:00:20 +0900 (4688001)
+++ lib/droonga/collectors.rb    2014-03-06 14:18:16 +0900 (e191ffe)
@@ -13,6 +13,6 @@
 # License along with this library; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
-require "droonga/collectors/add"
 require "droonga/collectors/and"
+require "droonga/collectors/or"
 require "droonga/collectors/sum"

  Renamed: lib/droonga/collectors/or.rb (+1 -1) 98%
===================================================================
--- lib/droonga/collectors/add.rb    2014-02-28 17:00:20 +0900 (160beef)
+++ lib/droonga/collectors/or.rb    2014-03-06 14:18:16 +0900 (2b19115)
@@ -15,7 +15,7 @@
 
 module Droonga
   module Collectors
-    class Add
+    class Or
       class << self
         def operator
           "or"

  Modified: lib/droonga/plugins/groonga/column_create.rb (+1 -1)
===================================================================
--- lib/droonga/plugins/groonga/column_create.rb    2014-02-28 17:00:20 +0900 (bd7043b)
+++ lib/droonga/plugins/groonga/column_create.rb    2014-03-06 14:18:16 +0900 (887b802)
@@ -120,7 +120,7 @@ module Droonga
           step.name = "column_create"
           step.write = true
           step.handler = Handler
-          step.collector = Collectors::Add
+          step.collector = Collectors::Or
         end
       end
     end

  Modified: lib/droonga/plugins/groonga/table_create.rb (+1 -1)
===================================================================
--- lib/droonga/plugins/groonga/table_create.rb    2014-02-28 17:00:20 +0900 (634fb8d)
+++ lib/droonga/plugins/groonga/table_create.rb    2014-03-06 14:18:16 +0900 (43e4864)
@@ -103,7 +103,7 @@ module Droonga
           step.name = "table_create"
           step.write = true
           step.handler = Handler
-          step.collector = Collectors::Add
+          step.collector = Collectors::Or
         end
       end
     end

  Modified: lib/droonga/plugins/groonga/table_remove.rb (+1 -1)
===================================================================
--- lib/droonga/plugins/groonga/table_remove.rb    2014-02-28 17:00:20 +0900 (fcfa14c)
+++ lib/droonga/plugins/groonga/table_remove.rb    2014-03-06 14:18:16 +0900 (a6428b6)
@@ -54,7 +54,7 @@ module Droonga
           step.name = "table_remove"
           step.write = true
           step.handler = Handler
-          step.collector = Collectors::Add
+          step.collector = Collectors::Or
         end
       end
     end
-------------- next part --------------
HTML����������������������������...
Download 



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