@@ -1027,8 +1027,8 @@ func FormatCacheDetailsStorage(cacheDetails []config.CacheDetail) string {
10271027 "FILTER LISTENERS" , "MAX QUERY MS" , "MAX QUERY DESC" ).MaxLength (maxLength ).WithSortingColumn (NodeIDColumn )
10281028
10291029 if OutputFormat == constants .WIDE {
1030- table .AddHeaderColumns ("NO OPT AVG" , "OPT AVG" , "INDEX SIZE" , "INDEXING MILLIS" )
1031- table .WithAlignment (R , L , R , R , R , R , R , L , R , R , R , R )
1030+ table .AddHeaderColumns ("NO OPT AVG" , CountColumn , "OPT AVG" , CountColumn , "INDEX SIZE" , "INDEXING MILLIS" )
1031+ table .WithAlignment (R , L , R , R , R , R , R , L , R , R , R , R , R , R )
10321032 } else {
10331033 table .WithAlignment (R , L , R , R , R , R , R , L )
10341034 }
@@ -1045,8 +1045,9 @@ func FormatCacheDetailsStorage(cacheDetails []config.CacheDetail) string {
10451045 formatLargeInteger (value .MaxQueryDurationMillis ), value .MaxQueryDescription )
10461046 if OutputFormat == constants .WIDE {
10471047 table .AddColumnsToRow (formatFloat (float32 (value .NonOptimizedQueryAverageMillis )),
1048- formatFloat (float32 (value .OptimizedQueryAverageMillis )),
1049- formattingFunction (value .IndexTotalUnits ), formatLargeInteger (value .IndexingTotalMillis ))
1048+ formatLargeInteger (value .NonOptimizedQueryCount ), formatFloat (float32 (value .OptimizedQueryAverageMillis )),
1049+ formatLargeInteger (value .OptimizedQueryCount ), formattingFunction (value .IndexTotalUnits ),
1050+ formatLargeInteger (value .IndexingTotalMillis ))
10501051 }
10511052 }
10521053
0 commit comments