| 298 | struct update_returning : update_stmt { |
| 299 | shared_ptr<struct select_list> select_list; |
| 300 | update_returning(prod *p, struct scope *s, table *victim = 0); |
| 301 | virtual void out(std::ostream &out) { |
| 302 | update_stmt::out(out); |
| 303 | out << std::endl << "returning " << *select_list; |
nothing calls this directly
no outgoing calls
no test coverage detected