doc: Incorrect return type of IsForeignScanParallelSafe in fdwhandler.sgml

Started by Etsuro Fujitaover 9 years ago3 messages
#1Etsuro Fujita
fujita.etsuro@lab.ntt.co.jp
1 attachment(s)

Hi,

I noticed that the return type of IsForeignScanParallelSafe described in
fdwhandler.sgml isn't correct; that should be bool, not Size. Please
find attached a small patch for that.

Best regards,
Etsuro Fujita

Attachments:

doc-IsForeignScanParallelSafe.patchtext/x-diff; name=doc-IsForeignScanParallelSafe.patchDownload
diff --git a/doc/src/sgml/fdwhandler.sgml b/doc/src/sgml/fdwhandler.sgml
index 455eef6..4cd79f3 100644
--- a/doc/src/sgml/fdwhandler.sgml
+++ b/doc/src/sgml/fdwhandler.sgml
@@ -1201,7 +1201,7 @@ ImportForeignSchema (ImportForeignSchemaStmt *stmt, Oid serverOid);
 
     <para>
 <programlisting>
-Size
+bool
 IsForeignScanParallelSafe(PlannerInfo *root, RelOptInfo *rel,
                           RangeTblEntry *rte);
 </programlisting>
#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Etsuro Fujita (#1)
Re: doc: Incorrect return type of IsForeignScanParallelSafe in fdwhandler.sgml

Etsuro Fujita <fujita.etsuro@lab.ntt.co.jp> writes:

I noticed that the return type of IsForeignScanParallelSafe described in
fdwhandler.sgml isn't correct; that should be bool, not Size. Please
find attached a small patch for that.

Pushed, thanks!

regards, tom lane

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#3Etsuro Fujita
fujita.etsuro@lab.ntt.co.jp
In reply to: Tom Lane (#2)
Re: doc: Incorrect return type of IsForeignScanParallelSafe in fdwhandler.sgml

On 2016/07/09 1:41, Tom Lane wrote:

Etsuro Fujita <fujita.etsuro@lab.ntt.co.jp> writes:

I noticed that the return type of IsForeignScanParallelSafe described in
fdwhandler.sgml isn't correct; that should be bool, not Size. Please
find attached a small patch for that.

Pushed, thanks!

Thank you.

Best regards,
Etsuro Fujita

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers