()
| 714 | } |
| 715 | |
| 716 | @Test (expected=QueryException.class) |
| 717 | public void fetchMoreThanMaxBytes() throws Exception { |
| 718 | setupStorage(); |
| 719 | max_bytes = 0; |
| 720 | MultiGetQuery mgq = new MultiGetQuery(tsdb, query, METRIC_BYTES, q_tags, |
| 721 | start_ts, end_ts, tsdb.dataTable(), spans, null, 0, null, query_stats, |
| 722 | 0, max_bytes, false, multiget_no_meta); |
| 723 | final SortedMap<byte[], Span> results = mgq.fetch().join(); |
| 724 | } |
| 725 | |
| 726 | @Test |
| 727 | public void fetchEmptyTable() throws Exception { |
nothing calls this directly
no test coverage detected