| 115 | }; |
| 116 | |
| 117 | struct op { |
| 118 | string name; |
| 119 | sqltype *left; |
| 120 | sqltype *right; |
| 121 | sqltype *result; |
| 122 | op(string n,sqltype *l,sqltype *r, sqltype *res) |
| 123 | : name(n), left(l), right(r), result(res) { } |
| 124 | op() { } |
| 125 | }; |
| 126 | |
| 127 | struct routine { |
| 128 | string specific_name; |
nothing calls this directly
no outgoing calls
no test coverage detected