1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-24 10:47:04 +03:00

doc: Make function synopsis formatting more uniform

Whitespace use was inconsistent in the same chapter.
This commit is contained in:
Peter Eisentraut 2017-09-06 11:38:28 -04:00
parent 1c53f612bc
commit 34ae182833

View File

@ -970,7 +970,8 @@ RefetchForeignRow (EState *estate,
<para>
<programlisting>
bool
RecheckForeignScan (ForeignScanState *node, TupleTableSlot *slot);
RecheckForeignScan(ForeignScanState *node,
TupleTableSlot *slot);
</programlisting>
Recheck that a previously-returned tuple still matches the relevant
scan and join qualifiers, and possibly provide a modified version of
@ -1109,8 +1110,10 @@ AnalyzeForeignTable (Relation relation,
If provided, the sample collection function must have the signature
<programlisting>
int
AcquireSampleRowsFunc (Relation relation, int elevel,
HeapTuple *rows, int targrows,
AcquireSampleRowsFunc(Relation relation,
int elevel,
HeapTuple *rows,
int targrows,
double *totalrows,
double *totaldeadrows);
</programlisting>