MultiJoinPlan constructor

MultiJoinPlan(
  1. List<PhysicalJoinOp> ops
)

Implementation

MultiJoinPlan(this.ops)
    : totalCost = ops.fold(0.0, (s, op) => s + op.cost.totalCost);