Revision 14244
Added by Aaron Marcuse-Kubitza over 10 years ago
trunk/schemas/util.sql | ||
---|---|---|
3658 | 3658 |
|
3659 | 3659 |
|
3660 | 3660 |
-- |
3661 |
-- Name: mk_set_comment(regprocedure, text); Type: FUNCTION; Schema: util; Owner: - |
|
3662 |
-- |
|
3663 |
|
|
3664 |
CREATE FUNCTION mk_set_comment(func regprocedure, comment text) RETURNS text |
|
3665 |
LANGUAGE sql STABLE |
|
3666 |
AS $$ |
|
3667 |
SELECT util.mk_set_comment('FUNCTION '||func, comment) |
|
3668 |
$$; |
|
3669 |
|
|
3670 |
|
|
3671 |
-- |
|
3661 | 3672 |
-- Name: mk_set_comment(text, text); Type: FUNCTION; Schema: util; Owner: - |
3662 | 3673 |
-- |
3663 | 3674 |
|
Also available in: Unified diff
schemas/util.sql: added mk_set_comment(regprocedure, text)