ValuesPlan plan, nestedPlan;
public ValuesPlanClass(JoinEnumerator enumerator, long bitset,
ExpressionsSource values, Picker picker) {
super(enumerator, bitset);
CostEstimator costEstimator = picker.getCostEstimator();
this.plan = new ValuesPlan(values, costEstimator.costValues(values, false));
// Nested also needs to check the join condition with Select.
this.nestedPlan = new ValuesPlan(values, costEstimator.costValues(values, true));
}