(rng: &mut StdRng, length: usize)
| 750 | } |
| 751 | |
| 752 | fn generate_random_string(rng: &mut StdRng, length: usize) -> String { |
| 753 | rng.sample_iter(&Alphanumeric) |
| 754 | .take(length) |
| 755 | .map(char::from) |
| 756 | .collect() |
| 757 | } |
| 758 | |
| 759 | /// Return randomly sized record batches with: |
| 760 | /// three sorted int32 columns 'a', 'b', 'c' ranged from 0..DISTINCT as columns |
no test coverage detected
searching dependent graphs…