Create a TestScan with a single output ordering
(schema: SchemaRef, ordering: LexOrdering)
| 879 | |
| 880 | /// Create a TestScan with a single output ordering |
| 881 | pub fn with_ordering(schema: SchemaRef, ordering: LexOrdering) -> Self { |
| 882 | Self::new(schema, vec![ordering]) |
| 883 | } |
| 884 | |
| 885 | /// Set whether `try_pushdown_sort` returns `Exact` (true) or `Inexact` (false). |
| 886 | pub fn with_exact_pushdown(mut self, exact: bool) -> Self { |
no test coverage detected