Helper: compute expected vshard for a given hilbert prefix and prefix_bits.
(prefix: u64, prefix_bits: u8)
| 155 | |
| 156 | // Helper: compute expected vshard for a given hilbert prefix and prefix_bits. |
| 157 | fn expected_vshard(prefix: u64, prefix_bits: u8) -> u32 { |
| 158 | array_vshard_for_tile(prefix, prefix_bits).unwrap() |
| 159 | } |
| 160 | |
| 161 | #[test] |
| 162 | fn partition_put_empty_returns_empty() { |
nothing calls this directly
no test coverage detected