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

Class insert_stmt

grammar.hh:206–215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

204};
205
206struct insert_stmt : modifying_stmt {
207 vector<shared_ptr<value_expr> > value_exprs;
208 insert_stmt(prod *p, struct scope *s, table *victim = 0);
209 virtual ~insert_stmt() { }
210 virtual void out(std::ostream &out);
211 virtual void accept(prod_visitor *v) {
212 v->visit(this);
213 for (auto p : value_exprs) p->accept(v);
214 }
215};
216
217struct set_list : prod {
218 vector<shared_ptr<value_expr> > value_exprs;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected