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:
LuQQiu
2025-10-09 09:33:38 -07:00
committed by GitHub
parent b59d1007d3
commit 86a6bb9fcb

View File

@@ -125,6 +125,10 @@ impl ExecutionPlan for MetadataEraserExec {
fn partition_statistics(&self, partition: Option<usize>) -> DataFusionResult<Statistics> {
self.input.partition_statistics(partition)
}
fn supports_limit_pushdown(&self) -> bool {
true
}
}
#[derive(Debug)]