[Groonga-mysql-commit] mroonga/mroonga [master] use "The mroonga project" for plugin author.

Back to archive index

null+****@clear***** null+****@clear*****
2011年 12月 30日 (金) 19:40:02 JST


Kouhei Sutou	2011-12-30 19:40:02 +0900 (Fri, 30 Dec 2011)

  New Revision: 10aa17553f47415faa5daed4a20a839c34c43f14

  Log:
    use "The mroonga project" for plugin author.

  Added files:
    AUTHORS
  Modified files:
    Makefile.am
    ha_mroonga.cc

  Added: AUTHORS (+7 -0) 100644
===================================================================
--- /dev/null
+++ AUTHORS    2011-12-30 19:40:02 +0900 (c29bd9c)
@@ -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

  Modified: Makefile.am (+3 -1)
===================================================================
--- Makefile.am    2011-12-30 19:34:32 +0900 (a379376)
+++ Makefile.am    2011-12-30 19:40:02 +0900 (8e2feb7)
@@ -45,7 +45,9 @@ SUBDIRS =					\
 	tools					\
 	packages
 
-EXTRA_DIST = plug.in
+EXTRA_DIST =					\
+	AUTHORS					\
+	plug.in
 
 installcheck-local: install
 	test/run-sql-test.sh

  Modified: ha_mroonga.cc (+3 -3)
===================================================================
--- ha_mroonga.cc    2011-12-30 19:34:32 +0900 (d21635c)
+++ ha_mroonga.cc    2011-12-30 19:40:02 +0900 (4c83f39)
@@ -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" {
@@ -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
@@ -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,
@@ -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,




Groonga-mysql-commit メーリングリストの案内
Back to archive index