Like [`sample_rows`], but ids run `start..start + n`. Successive batches with disjoint id ranges produce distinct rows that never consolidate with each other, so a downstream count equals the total rows written.
(start: u64, n: u64, pad: usize)
| 139 | /// disjoint id ranges produce distinct rows that never consolidate with each |
| 140 | /// other, so a downstream count equals the total rows written. |
| 141 | pub fn sample_rows_from(start: u64, n: u64, pad: usize) -> Vec<Row> { |
| 142 | synth_rows(&sample_desc(), start, n, pad) |
| 143 | } |
| 144 | |
| 145 | /// Writes `rows` to `shard` at `ts`, advancing `upper` to `ts+1`. All rows are |
| 146 | /// inserted with diff `+1`. Returns once the append succeeds. |
no test coverage detected