Creates a file with partition value with a static size of 10.
(path: &str, pv: &str)
| 1225 | |
| 1226 | /// Creates a file with partition value with a static size of 10. |
| 1227 | fn pfile_with_pv(path: &str, pv: &str) -> PartitionedFile { |
| 1228 | let mut file = pfile(path, 10); |
| 1229 | file.partition_values = vec![ScalarValue::from(pv)]; |
| 1230 | file |
| 1231 | } |
| 1232 | |
| 1233 | /// repartition the file groups both with and without preserving order |
| 1234 | /// asserting they return the same value and returns that value |
nothing calls this directly
no test coverage detected
searching dependent graphs…