Navigation Menu

Skip to content

Commit

Permalink
use "The mroonga project" for plugin author.
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Dec 30, 2011
1 parent 75f3e1a commit 10aa175
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
7 changes: 7 additions & 0 deletions AUTHORS
@@ -0,0 +1,7 @@
Active developers:
* Kentoku SHIBA
* Kouhei Sutou

Inactive developers:
* Tetsuro IKEDA: The original author: Active
* Yoshinori Matsunobu: The original author of information schema
4 changes: 3 additions & 1 deletion Makefile.am
Expand Up @@ -45,7 +45,9 @@ SUBDIRS = \
tools \
packages

EXTRA_DIST = plug.in
EXTRA_DIST = \
AUTHORS \
plug.in

installcheck-local: install
test/run-sql-test.sh
Expand Down
6 changes: 3 additions & 3 deletions ha_mroonga.cc
Expand Up @@ -105,6 +105,7 @@ extern pthread_mutex_t LOCK_open;
#endif

static const char *index_column_name = "index";
static const char *mrn_plugin_author = "The mroonga project";

#ifdef __cplusplus
extern "C" {
Expand Down Expand Up @@ -748,7 +749,6 @@ void last_insert_grn_id_deinit(UDF_INIT *initid)
}

/* mroonga information schema */
static const char plugin_author[] = "Yoshinori Matsunobu";
static struct st_mysql_information_schema i_s_info =
{
MYSQL_INFORMATION_SCHEMA_INTERFACE_VERSION
Expand Down Expand Up @@ -822,7 +822,7 @@ struct st_mysql_plugin i_s_mrn_stats =
MYSQL_INFORMATION_SCHEMA_PLUGIN,
&i_s_info,
MRN_PLUGIN_NAME_STRING "_stats",
plugin_author,
mrn_plugin_author,
"Statistics for " MRN_PLUGIN_NAME_STRING,
PLUGIN_LICENSE_GPL,
i_s_mrn_stats_init,
Expand Down Expand Up @@ -1559,7 +1559,7 @@ mrn_declare_plugin(MRN_PLUGIN_NAME)
MYSQL_STORAGE_ENGINE_PLUGIN,
&storage_engine_structure,
MRN_PLUGIN_NAME_STRING,
"Tetsuro IKEDA",
mrn_plugin_author,
"CJK-ready fulltext search, column store",
PLUGIN_LICENSE_GPL,
mrn_init,
Expand Down

0 comments on commit 10aa175

Please sign in to comment.