Revision 12368
Added by Aaron Marcuse-Kubitza almost 11 years ago
trunk/schemas/util.sql | ||
---|---|---|
841 | 841 |
|
842 | 842 |
|
843 | 843 |
-- |
844 |
-- Name: comment(oid); Type: FUNCTION; Schema: util; Owner: - |
|
845 |
-- |
|
846 |
|
|
847 |
CREATE FUNCTION comment(element oid) RETURNS text |
|
848 |
LANGUAGE sql STABLE STRICT |
|
849 |
AS $_$ |
|
850 |
SELECT description FROM pg_description WHERE objoid = $1 |
|
851 |
$_$; |
|
852 |
|
|
853 |
|
|
854 |
-- |
|
844 | 855 |
-- Name: concat_esc(text, text); Type: FUNCTION; Schema: util; Owner: - |
845 | 856 |
-- |
846 | 857 |
|
Also available in: Unified diff
schemas/util.sql: added comment(oid)