[Groonga-commit] groonga/fluent-plugin-groonga at f00b8d0 [master] Fix a bug that wrong index name is used

Back to archive index

Kouhei Sutou null+****@clear*****
Thu Nov 20 16:25:35 JST 2014


Kouhei Sutou	2014-11-20 16:25:35 +0900 (Thu, 20 Nov 2014)

  New Revision: f00b8d0c5686336b1dc6ee41acbbb6090d252c98
  https://github.com/groonga/fluent-plugin-groonga/commit/f00b8d0c5686336b1dc6ee41acbbb6090d252c98

  Message:
    Fix a bug that wrong index name is used

  Modified files:
    lib/fluent/plugin/out_groonga.rb

  Modified: lib/fluent/plugin/out_groonga.rb (+1 -1)
===================================================================
--- lib/fluent/plugin/out_groonga.rb    2014-11-20 11:40:37 +0900 (46092d4)
+++ lib/fluent/plugin/out_groonga.rb    2014-11-20 16:25:35 +0900 (28b3a8f)
@@ -365,7 +365,7 @@ module Fluent
             index_flags = ["COLUMN_INDEX", index[:flags]].compact
             @client.execute("column_create",
                             "table" => index[:table],
-                            "name" => index[:table],
+                            "name" => index[:name],
                             "flags" => index_flags.join("|"),
                             "type" => @table_name,
                             "source" => name)
-------------- next part --------------
HTML����������������������������...
Descargar 



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