1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +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> <para>
<programlisting> <programlisting>
bool bool
RecheckForeignScan (ForeignScanState *node, TupleTableSlot *slot); RecheckForeignScan(ForeignScanState *node,
TupleTableSlot *slot);
</programlisting> </programlisting>
Recheck that a previously-returned tuple still matches the relevant Recheck that a previously-returned tuple still matches the relevant
scan and join qualifiers, and possibly provide a modified version of 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 If provided, the sample collection function must have the signature
<programlisting> <programlisting>
int int
AcquireSampleRowsFunc (Relation relation, int elevel, AcquireSampleRowsFunc(Relation relation,
HeapTuple *rows, int targrows, int elevel,
HeapTuple *rows,
int targrows,
double *totalrows, double *totalrows,
double *totaldeadrows); double *totaldeadrows);
</programlisting> </programlisting>