fn add_limit(
pushdown_plan: Arc<dyn ExecutionPlan>,
skip: usize,
fetch: usize,
) -> Arc<dyn ExecutionPlan>Expand description
Adds a limit to the plan, chooses between global and local limits based on skip value and the number of partitions.