Navigation Menu

Skip to content

Commit

Permalink
Use UPPER_CASE for constant name
Browse files Browse the repository at this point in the history
mrn_plugin_author ->
MRN_PLUGIN_AUTHOR
  • Loading branch information
kou committed Oct 24, 2012
1 parent 0c09f17 commit 6fa1d48
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ha_mroonga.cpp
Expand Up @@ -113,7 +113,7 @@ extern pthread_mutex_t LOCK_open;
#endif

static const char *INDEX_COLUMN_NAME = "index";
static const char *mrn_plugin_author = "The mroonga project";
static const char *MRN_PLUGIN_AUTHOR = "The mroonga project";
static const long long int TM_YEAR_BASE = 1900;
static const long long int UNIX_EPOCH_TIME_YEAR = 1970;

Expand Down Expand Up @@ -1225,7 +1225,7 @@ struct st_mysql_plugin i_s_mrn_stats =
MYSQL_INFORMATION_SCHEMA_PLUGIN,
&i_s_info,
MRN_PLUGIN_NAME_STRING "_stats",
mrn_plugin_author,
MRN_PLUGIN_AUTHOR,
"Statistics for " MRN_PLUGIN_NAME_STRING,
PLUGIN_LICENSE_GPL,
i_s_mrn_stats_init,
Expand Down Expand Up @@ -1803,7 +1803,7 @@ mrn_declare_plugin(MRN_PLUGIN_NAME)
MYSQL_STORAGE_ENGINE_PLUGIN,
&storage_engine_structure,
MRN_PLUGIN_NAME_STRING,
mrn_plugin_author,
MRN_PLUGIN_AUTHOR,
"CJK-ready fulltext search, column store",
PLUGIN_LICENSE_GPL,
mrn_init,
Expand Down

0 comments on commit 6fa1d48

Please sign in to comment.