incorrect info in dblink examples

Started by PG Bug reporting formabout 3 years ago2 messagesdocs
Jump to latest
#1PG Bug reporting form
noreply@postgresql.org

The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/15/contrib-dblink-function.html
Description:

In your examples, AS t1(proname name, prosrc text)
should actually be AS t1(proname text, prosrc text)

This occurs frequently in the documentation at the following link:
https://www.postgresql.org/docs/current/contrib-dblink-function.html

Thanks,

Doug

#2Michael Paquier
michael@paquier.xyz
In reply to: PG Bug reporting form (#1)
Re: incorrect info in dblink examples

On Mon, Feb 27, 2023 at 07:24:37PM +0000, PG Doc comments form wrote:

In your examples, AS t1(proname name, prosrc text)
should actually be AS t1(proname text, prosrc text)

This occurs frequently in the documentation at the following link:
https://www.postgresql.org/docs/current/contrib-dblink-function.html

Why? pg_proc.proname uses "name" as data type, so this is not wrong.
--
Michael