aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEtsuro Fujita <efujita@postgresql.org>2021-08-25 13:00:00 +0900
committerEtsuro Fujita <efujita@postgresql.org>2021-08-25 13:00:00 +0900
commit255ed90fd260061b4261569151539068be262b51 (patch)
tree363158aaf899ddc0153a8a46d52f4487268d3a6c
parent34651131348dfb60be124b3c1dfe92d09a94494f (diff)
downloadpostgresql-255ed90fd260061b4261569151539068be262b51.tar.gz
postgresql-255ed90fd260061b4261569151539068be262b51.zip
Doc: Tweak function prototype indentation for consistency.
-rw-r--r--doc/src/sgml/fdwhandler.sgml8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/fdwhandler.sgml b/doc/src/sgml/fdwhandler.sgml
index c21fe67eb7a..dbf5dd3d15a 100644
--- a/doc/src/sgml/fdwhandler.sgml
+++ b/doc/src/sgml/fdwhandler.sgml
@@ -622,10 +622,10 @@ ExecForeignInsert(EState *estate,
<programlisting>
TupleTableSlot **
ExecForeignBatchInsert(EState *estate,
- ResultRelInfo *rinfo,
- TupleTableSlot **slots,
- TupleTableSlot **planSlots,
- int *numSlots);
+ ResultRelInfo *rinfo,
+ TupleTableSlot **slots,
+ TupleTableSlot **planSlots,
+ int *numSlots);
</programlisting>
Insert multiple tuples in bulk into the foreign table.