WrappedHistogram is a Histogram with a size check on Unmarshal. Used only on the ingestion path, not on the query path.
| 186 | // WrappedHistogram is a Histogram with a size check on Unmarshal. |
| 187 | // Used only on the ingestion path, not on the query path. |
| 188 | type WrappedHistogram struct { |
| 189 | Histogram |
| 190 | } |
| 191 | |
| 192 | // Unmarshal implements proto.Message. |
| 193 | func (p *WrappedHistogram) Unmarshal(dAtA []byte) error { |
nothing calls this directly
no outgoing calls
no test coverage detected