| 125 | }; |
| 126 | |
| 127 | struct routine { |
| 128 | string specific_name; |
| 129 | string schema; |
| 130 | vector<sqltype *> argtypes; |
| 131 | sqltype *restype; |
| 132 | string name; |
| 133 | routine(string schema, string specific_name, sqltype* data_type, string name) |
| 134 | : specific_name(specific_name), schema(schema), restype(data_type), name(name) { |
| 135 | assert(data_type); |
| 136 | } |
| 137 | virtual string ident() { |
| 138 | if (schema.size()) |
| 139 | return schema + "." + name; |
| 140 | else |
| 141 | return name; |
| 142 | } |
| 143 | }; |
| 144 | |
| 145 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected