Revision 12344
Added by Aaron Marcuse-Kubitza almost 11 years ago
util.sql | ||
---|---|---|
2252 | 2252 |
|
2253 | 2253 |
|
2254 | 2254 |
-- |
2255 |
-- Name: relation_type(regclass); Type: FUNCTION; Schema: util; Owner: - |
|
2256 |
-- |
|
2257 |
|
|
2258 |
CREATE FUNCTION relation_type(relation regclass) RETURNS text |
|
2259 |
LANGUAGE sql STABLE |
|
2260 |
AS $_$ |
|
2261 |
SELECT util.relation_type(util.relation_type_char($1)) |
|
2262 |
$_$; |
|
2263 |
|
|
2264 |
|
|
2265 |
-- |
|
2255 | 2266 |
-- Name: relation_type("char"); Type: FUNCTION; Schema: util; Owner: - |
2256 | 2267 |
-- |
2257 | 2268 |
|
Also available in: Unified diff
schemas/util.sql: added relation_type(regclass)