Decode the histogram point from the given key value @param kv the key value that contains a histogram @return the decoded HistogramDataPoint
(final TSDB tsdb,
final KeyValue kv)
| 1079 | * @return the decoded {@code HistogramDataPoint} |
| 1080 | */ |
| 1081 | public static HistogramDataPoint decodeHistogramDataPoint(final TSDB tsdb, |
| 1082 | final KeyValue kv) { |
| 1083 | long timestamp = Internal.baseTime(kv.key()); |
| 1084 | return decodeHistogramDataPoint(tsdb, timestamp, kv.qualifier(), kv.value()); |
| 1085 | } |
| 1086 | |
| 1087 | /** |
| 1088 | * Decode the histogram point from the given key and values |
no test coverage detected