MCPcopy Create free account
hub / github.com/anse1/sqlsmith / delete_returning

Class delete_returning

grammar.hh:192–204  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

190};
191
192struct 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
206struct insert_stmt : modifying_stmt {
207 vector<shared_ptr<value_expr> > value_exprs;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected