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

Class funcall

expr.hh:31–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29};
30
31struct funcall : value_expr {
32 routine *proc;
33 bool is_aggregate;
34 vector<shared_ptr<value_expr> > parms;
35 virtual void out(std::ostream &out);
36 virtual ~funcall() { }
37 funcall(prod *p, sqltype *type_constraint = 0, bool agg = 0);
38 virtual void accept(prod_visitor *v) {
39 v->visit(this);
40 for (auto p : parms)
41 p->accept(v);
42 }
43};
44
45struct atomic_subselect : value_expr {
46 table *tab;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected