Adds one file and its root planner to partition 0.
(self, planner: impl Into<MockPlanner>)
| 1355 | |
| 1356 | /// Adds one file and its root planner to partition 0. |
| 1357 | fn with_file(self, planner: impl Into<MockPlanner>) -> Self { |
| 1358 | self.with_file_in_partition(PartitionId(0), planner) |
| 1359 | } |
| 1360 | |
| 1361 | /// Adds one file and its root planner to the specified input partition. |
| 1362 | fn with_file_in_partition( |
no test coverage detected