| 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; |
nothing calls this directly
no outgoing calls
no test coverage detected