Uses of Class
org.h2.table.PlanItem
-
Packages that use PlanItem Package Description org.h2.table Classes related to a table and table meta data. -
-
Uses of PlanItem in org.h2.table
Fields in org.h2.table declared as PlanItem Modifier and Type Field Description private PlanItem
PlanItem. joinPlan
private PlanItem
PlanItem. nestedJoinPlan
Fields in org.h2.table with type parameters of type PlanItem Modifier and Type Field Description private java.util.HashMap<TableFilter,PlanItem>
Plan. planItems
Methods in org.h2.table that return PlanItem Modifier and Type Method Description PlanItem
Table. getBestPlanItem(SessionLocal session, int[] masks, TableFilter[] filters, int filter, SortOrder sortOrder, AllColumnsForPlan allColumnsSet)
Get the best plan for the given search mask.PlanItem
TableFilter. getBestPlanItem(SessionLocal s, TableFilter[] filters, int filter, AllColumnsForPlan allColumnsSet)
Get the best plan item (index, cost) to use for the current join order.PlanItem
TableView. getBestPlanItem(SessionLocal session, int[] masks, TableFilter[] filters, int filter, SortOrder sortOrder, AllColumnsForPlan allColumnsSet)
PlanItem
Plan. getItem(TableFilter filter)
Get the plan item for the given table.(package private) PlanItem
PlanItem. getJoinPlan()
(package private) PlanItem
PlanItem. getNestedJoinPlan()
Methods in org.h2.table with parameters of type PlanItem Modifier and Type Method Description (package private) void
PlanItem. setJoinPlan(PlanItem joinPlan)
(package private) void
PlanItem. setNestedJoinPlan(PlanItem nestedJoinPlan)
void
TableFilter. setPlanItem(PlanItem item)
Set what plan item (index, cost, masks) to use.
-