Navigation Menu

Skip to content

Commit

Permalink
mroonga name is lower-case.
Browse files Browse the repository at this point in the history
  • Loading branch information
ikdttr committed Mar 17, 2010
1 parent 6450604 commit f2af5ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions ha_mroonga.cc
Expand Up @@ -147,9 +147,9 @@ longlong mrn_status_cond_push_used = 0;

struct st_mysql_show_var mrn_status_variables[] =
{
{"Mroonga_column_target", (char*) &mrn_status_column_target, SHOW_LONGLONG},
{"Mroonga_column_used", (char*) &mrn_status_column_used, SHOW_LONGLONG},
{"Mroonga_cond_push_used", (char*) &mrn_status_cond_push_used, SHOW_LONGLONG},
{"mroonga_column_target", (char*) &mrn_status_column_target, SHOW_LONGLONG},
{"mroonga_column_used", (char*) &mrn_status_column_used, SHOW_LONGLONG},
{"mroonga_cond_push_used", (char*) &mrn_status_cond_push_used, SHOW_LONGLONG},
NULL
};

Expand Down Expand Up @@ -228,7 +228,7 @@ mysql_declare_plugin(mroonga)
{
MYSQL_STORAGE_ENGINE_PLUGIN,
&storage_engine_structure,
"Mroonga",
"mroonga",
"Tetsuro IKEDA",
"MySQL binding for Groonga",
PLUGIN_LICENSE_BSD,
Expand Down Expand Up @@ -261,7 +261,7 @@ ha_mroonga::~ha_mroonga()

const char *ha_mroonga::table_type() const
{
return "Mroonga";
return "mroonga";
}

const char *ha_mroonga::index_type(uint inx)
Expand Down
2 changes: 1 addition & 1 deletion plug.in
@@ -1,4 +1,4 @@
MYSQL_STORAGE_ENGINE(mroonga,,[Mroonga Storage Engine],
MYSQL_STORAGE_ENGINE(mroonga,,[mroonga storage engine],
[MySQL binding for Groonga],
[max,max-no-ndb])
MYSQL_PLUGIN_DIRECTORY(mroonga, [storage/mroonga])
Expand Down

0 comments on commit f2af5ae

Please sign in to comment.