| 135 | } |
| 136 | |
| 137 | distinct_pred::distinct_pred(prod *p) : bool_binop(p) |
| 138 | { |
| 139 | lhs = make_shared<column_reference>(this); |
| 140 | rhs = make_shared<column_reference>(this, lhs->type); |
| 141 | } |
| 142 | |
| 143 | comparison_op::comparison_op(prod *p) : bool_binop(p) |
| 144 | { |
nothing calls this directly
no outgoing calls
no test coverage detected