mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-06 20:02:58 +00:00
chore: supports limit push down through MetadataEraserExec (#2679)
For limit to sucessfully push down to FilteredReadExec https://github.com/lancedb/lance/pull/4795/
This commit is contained in:
@@ -125,6 +125,10 @@ impl ExecutionPlan for MetadataEraserExec {
|
|||||||
fn partition_statistics(&self, partition: Option<usize>) -> DataFusionResult<Statistics> {
|
fn partition_statistics(&self, partition: Option<usize>) -> DataFusionResult<Statistics> {
|
||||||
self.input.partition_statistics(partition)
|
self.input.partition_statistics(partition)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn supports_limit_pushdown(&self) -> bool {
|
||||||
|
true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
|
|||||||
Reference in New Issue
Block a user