diff --git a/fastfield_codecs/src/main.rs b/fastfield_codecs/src/main.rs index 197dfa20f..a119c6441 100644 --- a/fastfield_codecs/src/main.rs +++ b/fastfield_codecs/src/main.rs @@ -91,6 +91,10 @@ pub fn get_codec_test_data_sets() -> Vec<(Vec, &'static str)> { .collect::>(); data_and_names.push((data, "Almost monotonically increasing")); + let data = (1000..=200_000_u64) + .map(|_| rand::random::() as u64) + .collect::>(); + data_and_names.push((data, "Random")); data_and_names }