[Groonga-mysql-commit] mroonga/mroonga [master] Split variable declarations.

Back to archive index

null+****@clear***** null+****@clear*****
2012年 2月 24日 (金) 14:36:38 JST


Kouhei Sutou	2012-02-24 14:36:38 +0900 (Fri, 24 Feb 2012)

  New Revision: 913ebf91c71be03c5d165e8d4c493eb1c807f4b0

  Log:
    Split variable declarations.

  Modified files:
    ha_mroonga.cc

  Modified: ha_mroonga.cc (+3 -2)
===================================================================
--- ha_mroonga.cc    2012-02-24 06:40:41 +0900 (b216f79)
+++ ha_mroonga.cc    2012-02-24 14:36:38 +0900 (272048a)
@@ -9983,8 +9983,9 @@ int ha_mroonga::wrapper_recreate_indexes(THD *thd)
 {
   int res;
   uint i, n_keys = table_share->keys;
-  KEY *p_key_info = &table->key_info[table_share->primary_key], *tmp_key_info,
-    *key_info = table->key_info;
+  KEY *p_key_info = &table->key_info[table_share->primary_key];
+  KEY *tmp_key_info;
+  KEY *key_info = table->key_info;
   char db_name[MRN_MAX_PATH_SIZE];
   char table_name[MRN_MAX_PATH_SIZE];
   MRN_DBUG_ENTER_METHOD();




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