| 232 | shared_ptr<bool_expr> search; |
| 233 | upsert_stmt(prod *p, struct scope *s, table *v = 0); |
| 234 | virtual void out(std::ostream &out) { |
| 235 | insert_stmt::out(out); |
| 236 | out << " on conflict on constraint " << constraint << " do update "; |
| 237 | out << *set_list << " where " << *search; |
| 238 | } |
| 239 | virtual void accept(prod_visitor *v) { |
| 240 | insert_stmt::accept(v); |
| 241 | set_list->accept(v); |
nothing calls this directly
no outgoing calls
no test coverage detected