()
| 685 | } |
| 686 | |
| 687 | @Test |
| 688 | public void fetch() throws Exception { |
| 689 | setupStorage(); |
| 690 | MultiGetQuery mgq = new MultiGetQuery(tsdb, query, METRIC_BYTES, q_tags, |
| 691 | start_ts, end_ts, tsdb.dataTable(), spans, null, 0, null, query_stats, |
| 692 | 0, max_bytes, false, multiget_no_meta); |
| 693 | |
| 694 | final SortedMap<byte[], Span> results = mgq.fetch().join(); |
| 695 | assertSame(spans, results); |
| 696 | verify(client, times(1)).get(anyList()); |
| 697 | System.out.println(spans); |
| 698 | validateSpans(); |
| 699 | } |
| 700 | |
| 701 | @Test |
| 702 | public void fetchMultigetNoMeta() throws Exception { |
nothing calls this directly
no test coverage detected