Package org.h2.table
Class PlanItem
- java.lang.Object
-
- org.h2.table.PlanItem
-
public class PlanItem extends java.lang.Object
The plan item describes the index to be used, and the estimated cost when using it.
-
-
Constructor Summary
Constructors Constructor Description PlanItem()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Index
getIndex()
(package private) PlanItem
getJoinPlan()
(package private) int[]
getMasks()
(package private) PlanItem
getNestedJoinPlan()
(package private) void
setIndex(Index index)
(package private) void
setJoinPlan(PlanItem joinPlan)
(package private) void
setMasks(int[] masks)
(package private) void
setNestedJoinPlan(PlanItem nestedJoinPlan)
-
-
-
Method Detail
-
setMasks
void setMasks(int[] masks)
-
getMasks
int[] getMasks()
-
setIndex
void setIndex(Index index)
-
getIndex
public Index getIndex()
-
getJoinPlan
PlanItem getJoinPlan()
-
getNestedJoinPlan
PlanItem getNestedJoinPlan()
-
setJoinPlan
void setJoinPlan(PlanItem joinPlan)
-
setNestedJoinPlan
void setNestedJoinPlan(PlanItem nestedJoinPlan)
-
-