| 29 | }; |
| 30 | |
| 31 | struct 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 | |
| 45 | struct atomic_subselect : value_expr { |
| 46 | table *tab; |
nothing calls this directly
no outgoing calls
no test coverage detected