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

Class prepare_stmt

grammar.hh:153–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

151};
152
153struct prepare_stmt : prod {
154 query_spec q;
155 static long seq;
156 long id;
157 virtual void out(std::ostream &out) {
158 out << "prepare prep" << id << " as " << q;
159 }
160 prepare_stmt(prod *p) : prod(p), q(p, scope) {
161 id = seq++;
162 }
163 virtual void accept(prod_visitor *v) {
164 v->visit(this);
165 q.accept(v);
166 }
167};
168
169struct modifying_stmt : prod {
170 table *victim;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected