returns a partitioned file with the specified path and size
(path: impl Into<String>, file_size: u64)
| 1220 | |
| 1221 | /// returns a partitioned file with the specified path and size |
| 1222 | fn pfile(path: impl Into<String>, file_size: u64) -> PartitionedFile { |
| 1223 | PartitionedFile::new(path, file_size) |
| 1224 | } |
| 1225 | |
| 1226 | /// Creates a file with partition value with a static size of 10. |
| 1227 | fn pfile_with_pv(path: &str, pv: &str) -> PartitionedFile { |
searching dependent graphs…