Struct datafusion_expr::logical_plan::Limit
source · pub struct Limit {
pub skip: usize,
pub fetch: Option<usize>,
pub input: Arc<LogicalPlan>,
}
Expand description
Produces the first n
tuples from its input and discards the rest.
Fields§
§skip: usize
Number of rows to skip before fetch
fetch: Option<usize>
Maximum number of rows to fetch, None means fetching all rows
input: Arc<LogicalPlan>
The logical plan