Skip to content
Snippets Groups Projects
Commit 0d93e385 authored by Tom Lane's avatar Tom Lane
Browse files

Make psql's \df display functions that return sets as having return type

'setof something'; formerly you could not tell at all that the function
returns set.
parent 60992456
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* *
* Copyright 2000-2002 by PostgreSQL Global Development Group * Copyright 2000-2002 by PostgreSQL Global Development Group
* *
* $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.70 2002/10/15 02:24:16 tgl Exp $ * $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.71 2002/10/19 20:50:44 tgl Exp $
*/ */
#include "postgres_fe.h" #include "postgres_fe.h"
#include "describe.h" #include "describe.h"
...@@ -119,9 +119,10 @@ describeFunctions(const char *pattern, bool verbose) ...@@ -119,9 +119,10 @@ describeFunctions(const char *pattern, bool verbose)
initPQExpBuffer(&buf); initPQExpBuffer(&buf);
printfPQExpBuffer(&buf, printfPQExpBuffer(&buf,
"SELECT pg_catalog.format_type(p.prorettype, NULL) as \"%s\",\n" "SELECT CASE WHEN p.proretset THEN 'setof ' ELSE '' END ||\n"
" n.nspname as \"%s\",\n" " pg_catalog.format_type(p.prorettype, NULL) as \"%s\",\n"
" p.proname as \"%s\",\n" " n.nspname as \"%s\",\n"
" p.proname as \"%s\",\n"
" pg_catalog.oidvectortypes(p.proargtypes) as \"%s\"", " pg_catalog.oidvectortypes(p.proargtypes) as \"%s\"",
_("Result data type"), _("Schema"), _("Name"), _("Result data type"), _("Schema"), _("Name"),
_("Argument data types")); _("Argument data types"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment