| 190 | }; |
| 191 | |
| 192 | struct delete_returning : delete_stmt { |
| 193 | shared_ptr<struct select_list> select_list; |
| 194 | delete_returning(prod *p, struct scope *s, table *victim = 0); |
| 195 | virtual void out(std::ostream &out) { |
| 196 | delete_stmt::out(out); |
| 197 | out << std::endl << "returning " << *select_list; |
| 198 | } |
| 199 | virtual void accept(prod_visitor *v) { |
| 200 | v->visit(this); |
| 201 | search->accept(v); |
| 202 | select_list->accept(v); |
| 203 | } |
| 204 | }; |
| 205 | |
| 206 | struct insert_stmt : modifying_stmt { |
| 207 | vector<shared_ptr<value_expr> > value_exprs; |
nothing calls this directly
no outgoing calls
no test coverage detected