| 64 | routines.push_back(r); |
| 65 | } |
| 66 | virtual void register_aggregate(routine& r) { |
| 67 | aggregates.push_back(r); |
| 68 | } |
| 69 | virtual op_iterator find_operator(sqltype *left, sqltype *right, sqltype *res) { |
| 70 | typekey t(left, right, res); |
| 71 | auto cons = index.equal_range(t); |
nothing calls this directly
no outgoing calls
no test coverage detected