public static interface PlanBuilderBase.ModifyPlanBase
Modifier and Type | Method and Description |
---|---|
PlanBuilder.ModifyPlan |
limit(long length)
This method returns a subset of the rows in the result set by returning the specified number of rows.
|
PlanBuilder.ModifyPlan |
limit(PlanParamExpr length)
This method returns a subset of the rows in the result set by returning the specified number of rows.
|
PlanBuilder.ModifyPlan |
limit(XsLongVal length)
This method returns a subset of the rows in the result set by returning the specified number of rows.
|
PlanBuilder.ModifyPlan |
offset(long start)
This method returns a subset of the rows in the result set by skipping the number of rows specified by start and returning the remaining rows up to the number specified by the prototype.limit method.
|
PlanBuilder.ModifyPlan |
offset(PlanParamExpr start)
This method returns a subset of the rows in the result set by skipping the number of rows specified by start and returning the remaining rows up to the number specified by the prototype.limit method.
|
PlanBuilder.ModifyPlan |
offset(XsLongVal start)
This method returns a subset of the rows in the result set by skipping the number of rows specified by start and returning the remaining rows up to the number specified by the prototype.limit method.
|
PlanBuilder.ModifyPlan |
offsetLimit(long start,
long length)
This method returns a subset of the rows in the result set by skipping the number of rows specified by start and returning the remaining rows up to the length limit.
|
PlanBuilder.ModifyPlan |
offsetLimit(XsLongVal start,
XsLongVal length)
This method returns a subset of the rows in the result set by skipping the number of rows specified by start and returning the remaining rows up to the length limit.
|
PlanBuilder.ModifyPlan |
where(CtsQueryExpr condition)
This method restricts the row set to rows from the documents matched by the cts.query expression.
|
PlanBuilder.ModifyPlan |
where(PlanCondition condition)
This method restricts the row set to rows matched by an SQL boolean expression.
|
PlanBuilder.ModifyPlan |
where(SemStoreExpr condition)
This method adjusts the row set based on the triples for the sem.store definition,
restricting the triples to the documents matched by a cts.query expression and
expanding the triples based on inferencing rules.
|
PlanBuilder.ModifyPlan |
where(ServerExpression condition)
This method restricts the row set to rows matched by the boolean expression.
|
PlanBuilder.ModifyPlan limit(long length)
length
- The number of rows to return.PlanBuilder.ModifyPlan limit(XsLongVal length)
length
- The number of rows to return.PlanBuilder.ModifyPlan limit(PlanParamExpr length)
length
- The number of rows to return.PlanBuilder.ModifyPlan offset(long start)
start
- The number of rows to skip.PlanBuilder.ModifyPlan offset(XsLongVal start)
start
- The number of rows to skip.PlanBuilder.ModifyPlan offset(PlanParamExpr start)
start
- The number of rows to skip.PlanBuilder.ModifyPlan offsetLimit(long start, long length)
start
- The number of rows to skip.length
- The number of rows to return.PlanBuilder.ModifyPlan offsetLimit(XsLongVal start, XsLongVal length)
start
- The number of rows to skip.length
- The number of rows to return.PlanBuilder.ModifyPlan where(ServerExpression condition)
condition
- The boolean expression on which to match.PlanBuilder.ModifyPlan where(CtsQueryExpr condition)
condition
- The cts.query expression for matching the documents.PlanBuilder.ModifyPlan where(PlanCondition condition)
condition
- The SQL boolean expression on which to match as returned by sqlCondition().PlanBuilder.ModifyPlan where(SemStoreExpr condition)
condition
- The sem.store for modifying the initial set of triples from which rows are projected.Copyright © 2013-2020 MarkLogic Corporation.