Helper to create a PartitionedFile with optional ordering
(name: &str, ordering: Option<LexOrdering>)
| 942 | |
| 943 | /// Helper to create a PartitionedFile with optional ordering |
| 944 | fn create_file(name: &str, ordering: Option<LexOrdering>) -> PartitionedFile { |
| 945 | PartitionedFile::new(name.to_string(), 1024).with_ordering(ordering) |
| 946 | } |
| 947 | |
| 948 | #[test] |
| 949 | fn test_derive_common_ordering_all_files_same_ordering() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…