diff options
author | Tomas Vondra <tomas.vondra@postgresql.org> | 2021-02-18 00:01:21 +0100 |
---|---|---|
committer | Tomas Vondra <tomas.vondra@postgresql.org> | 2021-02-18 00:03:41 +0100 |
commit | c15283ff429bf318f161bf84768795843b22696d (patch) | |
tree | 1b03e5db29b8f41b45a819c30726418aa354cb05 /doc/src | |
parent | 4e703d67193df0431c0740044d662d1feade73aa (diff) | |
download | postgresql-c15283ff429bf318f161bf84768795843b22696d.tar.gz postgresql-c15283ff429bf318f161bf84768795843b22696d.zip |
Fix pointer type in ExecForeignBatchInsert SGML docs
Reported-by: Ian Barwick
Discussion: https://postgr.es/m/20200628151002.7x5laxwpgvkyiu3q@development
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/fdwhandler.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/fdwhandler.sgml b/doc/src/sgml/fdwhandler.sgml index 854913ae5fc..2e73d296d24 100644 --- a/doc/src/sgml/fdwhandler.sgml +++ b/doc/src/sgml/fdwhandler.sgml @@ -619,7 +619,7 @@ TupleTableSlot ** ExecForeignBatchInsert(EState *estate, ResultRelInfo *rinfo, TupleTableSlot **slots, - TupleTableSlot *planSlots, + TupleTableSlot **planSlots, int *numSlots); </programlisting> |