@@ -131,8 +131,8 @@ func CmdMetadata(f CmdMetadataFlags, args []string, printHelp func()) error {
131131 printline ("Binary Format" , binaryFmt , "" )
132132 printline ("Database Type" , mdFromLib .DatabaseType , "" )
133133 printline ("IP Version" , strconv .Itoa (int (mdFromLib .IPVersion )), "" )
134- printline ("Record Size" , strconv .Itoa (int (mdFromLib .RecordSize )), simplifySize ( int64 ( mdFromLib . RecordSize )) )
135- printline ("Node Count" , strconv .Itoa (int (mdFromLib .NodeCount )), "" )
134+ printline ("Record Size" , strconv .Itoa (int (mdFromLib .RecordSize )), "" )
135+ printline ("Node Count" , strconv .Itoa (int (mdFromLib .NodeCount )), simplifyCount ( int64 ( mdFromLib . NodeCount )) )
136136 printline ("Tree Size" , strconv .Itoa (treeSize ), simplifySize (int64 (treeSize )))
137137 printline ("Data Section Size" , strconv .Itoa (dataSectionSize ), simplifySize (int64 (dataSectionSize )))
138138 if f .DataTypes {
@@ -146,13 +146,13 @@ func CmdMetadata(f CmdMetadataFlags, args []string, printHelp func()) error {
146146 typeSizePrintline ("Signed 32-bit Integer Size" , strconv .Itoa (int (typeSizes .Signed32bitIntSize )), simplifySize (typeSizes .Signed32bitIntSize ))
147147 typeSizePrintline ("Unsigned 64-bit Integer Size" , strconv .Itoa (int (typeSizes .Unsigned64bitIntSize )), simplifySize (typeSizes .Unsigned64bitIntSize ))
148148 typeSizePrintline ("Unsigned 128-bit Integer Size" , strconv .Itoa (int (typeSizes .Unsigned128bitIntSize )), simplifySize (typeSizes .Unsigned128bitIntSize ))
149- typeSizePrintline ("Map Key-Value Pair Count" , strconv .Itoa (int (typeSizes .MapKeyValueCount )), simplifySize (typeSizes .MapKeyValueCount ))
150- typeSizePrintline ("Array Length" , strconv .Itoa (int (typeSizes .ArrayLength )), simplifySize (typeSizes .ArrayLength ))
149+ typeSizePrintline ("Map Key-Value Pair Count" , strconv .Itoa (int (typeSizes .MapKeyValueCount )), simplifyCount (typeSizes .MapKeyValueCount ))
150+ typeSizePrintline ("Array Length" , strconv .Itoa (int (typeSizes .ArrayLength )), simplifyCount (typeSizes .ArrayLength ))
151151 typeSizePrintline ("Float Size" , strconv .Itoa (int (typeSizes .FloatSize )), simplifySize (typeSizes .FloatSize ))
152152 }
153- printline ("Data Section Start Offset" , strconv .Itoa (dataSectionStartOffset ), simplifySize ( int64 ( dataSectionStartOffset )) )
154- printline ("Data Section End Offset" , strconv .Itoa (dataSectionEndOffset ), simplifySize ( int64 ( dataSectionEndOffset )) )
155- printline ("Metadata Section Start Offset" , strconv .Itoa (metadataSectionStartOffset ), simplifySize ( int64 ( metadataSectionStartOffset )) )
153+ printline ("Data Section Start Offset" , strconv .Itoa (dataSectionStartOffset ), "" )
154+ printline ("Data Section End Offset" , strconv .Itoa (dataSectionEndOffset ), "" )
155+ printline ("Metadata Section Start Offset" , strconv .Itoa (metadataSectionStartOffset ), "" )
156156 printline ("Description" , "" , "" )
157157 descKeys , descVals := sortedMapKeysAndVals (mdFromLib .Description )
158158 longestDescKeyLen := strconv .Itoa (len (longestStrInStringSlice (descKeys )))
0 commit comments