MCPcopy Create free account
hub / github.com/anse1/sqlsmith / routine

Class routine

relmodel.hh:127–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

125};
126
127struct 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected