PhysicalJoinOp constructor

PhysicalJoinOp({
  1. required String leftTable,
  2. required String rightTable,
  3. required JoinEdge edge,
  4. required PhysicalJoinType method,
  5. required CostEstimate cost,
})

Implementation

PhysicalJoinOp({
  required this.leftTable,
  required this.rightTable,
  required this.edge,
  required this.method,
  required this.cost,
});