diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2005-10-14 20:48:18 +0000 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2005-10-14 20:48:18 +0000 |
commit | f620098dc809e15262a5b08187beb92d789d33cb (patch) | |
tree | abe922ee10e18760334b00b5d0e8349c244905c6 | |
parent | 4aa0d70fb7a9b6490ebeb9e2979b6a1930b25984 (diff) | |
download | postgresql-f620098dc809e15262a5b08187beb92d789d33cb.tar.gz postgresql-f620098dc809e15262a5b08187beb92d789d33cb.zip |
fix nonsensical summary row on example
-rw-r--r-- | doc/src/sgml/xfunc.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/xfunc.sgml b/doc/src/sgml/xfunc.sgml index 15ca5a21cea..4fb78614c37 100644 --- a/doc/src/sgml/xfunc.sgml +++ b/doc/src/sgml/xfunc.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/xfunc.sgml,v 1.104 2005/09/14 21:14:26 neilc Exp $ +$PostgreSQL: pgsql/doc/src/sgml/xfunc.sgml,v 1.105 2005/10/14 20:48:18 adunstan Exp $ --> <sect1 id="xfunc"> @@ -616,7 +616,7 @@ SELECT *, upper(fooname) FROM getfoo(1) AS t1; fooid | foosubid | fooname | upper -------+----------+---------+------- 1 | 1 | Joe | JOE -(2 rows) +(1 row) </screen> As the example shows, we can work with the columns of the function's |