[Groonga-commit] pgroonga/pgroonga at e0a97b1 [master] Fix a bug that unused lexicons aren't removed on VACUUM

Back to archive index

Kouhei Sutou null+****@clear*****
Fri Jul 10 14:54:51 JST 2015


Kouhei Sutou	2015-07-10 14:54:51 +0900 (Fri, 10 Jul 2015)

  New Revision: e0a97b1ad33525604e3f38fcf49ec57c13a02f9c
  https://github.com/pgroonga/pgroonga/commit/e0a97b1ad33525604e3f38fcf49ec57c13a02f9c

  Message:
    Fix a bug that unused lexicons aren't removed on VACUUM

  Modified files:
    pgroonga.c

  Modified: pgroonga.c (+1 -1)
===================================================================
--- pgroonga.c    2015-07-10 13:46:12 +0900 (ed87332)
+++ pgroonga.c    2015-07-10 14:54:51 +0900 (a874e27)
@@ -2544,7 +2544,7 @@ PGrnRemoveUnusedTables(void)
 			grn_obj *table;
 
 			snprintf(tableName, sizeof(tableName),
-					 PGrnLexiconNameFormat, i, relationID);
+					 PGrnLexiconNameFormat, relationID, i);
 			table = grn_ctx_get(ctx, tableName, strlen(tableName));
 			if (!table)
 				break;
-------------- next part --------------
HTML����������������������������...
다운로드 



More information about the Groonga-commit mailing list
Back to archive index