(context.Context, string, *storage.SearchHints, ...*labels.Matcher)
| 1002 | } |
| 1003 | |
| 1004 | func (q *sequentialSearchQuerier) SearchLabelValues(context.Context, string, *storage.SearchHints, ...*labels.Matcher) storage.SearchResultSet { |
| 1005 | r := q.nextResp(q.labelValueCount) |
| 1006 | q.labelValueCount++ |
| 1007 | if r.err != nil { |
| 1008 | return storage.ErrSearchResultSet(r.err) |
| 1009 | } |
| 1010 | return storage.NewSearchResultSetFromSlice(r.results, nil) |
| 1011 | } |
| 1012 | |
| 1013 | func TestSearchEndpointsPartialMatcherSetError(t *testing.T) { |
| 1014 | // Two match[] sets: the first yields three values, the second errors. |
nothing calls this directly
no test coverage detected