[Groonga-commit] groonga/groonga at 5233cac [master] object_inspect column_index: fix key name

Back to archive index
Kouhei Sutou null+****@clear*****
Fri Apr 5 12:10:48 JST 2019


Kouhei Sutou	2019-04-05 12:10:48 +0900 (Fri, 05 Apr 2019)

  Revision: 5233cacd21cb68e334afe0a0e41fc4a5ea9e0ec8
  https://github.com/groonga/groonga/commit/5233cacd21cb68e334afe0a0e41fc4a5ea9e0ec8

  Message:
    object_inspect column_index: fix key name

  Modified files:
    lib/proc/proc_object_inspect.c
    test/command/suite/object_inspect/column/index.expected
    test/command/suite/object_inspect/column/index_large.expected

  Modified: lib/proc/proc_object_inspect.c (+1 -1)
===================================================================
--- lib/proc/proc_object_inspect.c    2019-04-05 12:03:27 +0900 (06801551a)
+++ lib/proc/proc_object_inspect.c    2019-04-05 12:10:48 +0900 (3afde54c1)
@@ -348,7 +348,7 @@ command_object_inspect_column_index_value_statistics(grn_ctx *ctx,
     grn_ctx_output_cstr(ctx, "next_physical_segment_id");
     grn_ctx_output_uint64(ctx, h->pnext);
 
-    grn_ctx_output_cstr(ctx, "max_n_next_physical_segments");
+    grn_ctx_output_cstr(ctx, "max_n_physical_segments");
     grn_ctx_output_uint64(ctx, ii->seg->header->max_segment);
   }
   grn_ctx_output_map_close(ctx);

  Modified: test/command/suite/object_inspect/column/index.expected (+1 -1)
===================================================================
--- test/command/suite/object_inspect/column/index.expected    2019-04-05 12:03:27 +0900 (03fa5cd90)
+++ test/command/suite/object_inspect/column/index.expected    2019-04-05 12:10:48 +0900 (62e644ac7)
@@ -95,7 +95,7 @@ object_inspect Terms.memos_title_content
           0
         ],
         "next_physical_segment_id": 0,
-        "max_n_next_physical_segments": 131072
+        "max_n_physical_segments": 131072
       }
     },
     "sources": [

  Modified: test/command/suite/object_inspect/column/index_large.expected (+1 -1)
===================================================================
--- test/command/suite/object_inspect/column/index_large.expected    2019-04-05 12:03:27 +0900 (21fa8c071)
+++ test/command/suite/object_inspect/column/index_large.expected    2019-04-05 12:10:48 +0900 (b49d2d861)
@@ -95,7 +95,7 @@ object_inspect Terms.memos_title_content
           0
         ],
         "next_physical_segment_id": 0,
-        "max_n_next_physical_segments": 262144
+        "max_n_physical_segments": 262144
       }
     },
     "sources": [
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.osdn.me/mailman/archives/groonga-commit/attachments/20190405/abb41690/attachment.html>


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