Skip to content

Commit 61d599e

Browse files
committed
doc: Add type information for postgres_fdw parameters.
Author: Shinya Kato Reviewed-by: Fujii Masao Discussion: https://postgr.es/m/TYAPR01MB2896DEB25C3B0D57F6139768C40F9@TYAPR01MB2896.jpnprd01.prod.outlook.com
1 parent 735dc1a commit 61d599e

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

doc/src/sgml/postgres-fdw.sgml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ OPTIONS (ADD password_required 'false');
195195
<variablelist>
196196

197197
<varlistentry>
198-
<term><literal>schema_name</literal></term>
198+
<term><literal>schema_name</literal> (<type>string</type>)</term>
199199
<listitem>
200200
<para>
201201
This option, which can be specified for a foreign table, gives the
@@ -206,7 +206,7 @@ OPTIONS (ADD password_required 'false');
206206
</varlistentry>
207207

208208
<varlistentry>
209-
<term><literal>table_name</literal></term>
209+
<term><literal>table_name</literal> (<type>string</type>)</term>
210210
<listitem>
211211
<para>
212212
This option, which can be specified for a foreign table, gives the
@@ -217,7 +217,7 @@ OPTIONS (ADD password_required 'false');
217217
</varlistentry>
218218

219219
<varlistentry>
220-
<term><literal>column_name</literal></term>
220+
<term><literal>column_name</literal> (<type>string</type>)</term>
221221
<listitem>
222222
<para>
223223
This option, which can be specified for a column of a foreign table,
@@ -249,7 +249,7 @@ OPTIONS (ADD password_required 'false');
249249
<variablelist>
250250

251251
<varlistentry>
252-
<term><literal>use_remote_estimate</literal></term>
252+
<term><literal>use_remote_estimate</literal> (<type>boolean</type>)</term>
253253
<listitem>
254254
<para>
255255
This option, which can be specified for a foreign table or a foreign
@@ -263,7 +263,7 @@ OPTIONS (ADD password_required 'false');
263263
</varlistentry>
264264

265265
<varlistentry>
266-
<term><literal>fdw_startup_cost</literal></term>
266+
<term><literal>fdw_startup_cost</literal> (<type>floating point</type>)</term>
267267
<listitem>
268268
<para>
269269
This option, which can be specified for a foreign server, is a numeric
@@ -277,7 +277,7 @@ OPTIONS (ADD password_required 'false');
277277
</varlistentry>
278278

279279
<varlistentry>
280-
<term><literal>fdw_tuple_cost</literal></term>
280+
<term><literal>fdw_tuple_cost</literal> (<type>floating point</type>)</term>
281281
<listitem>
282282
<para>
283283
This option, which can be specified for a foreign server, is a numeric
@@ -329,7 +329,7 @@ OPTIONS (ADD password_required 'false');
329329
<variablelist>
330330

331331
<varlistentry>
332-
<term><literal>extensions</literal></term>
332+
<term><literal>extensions</literal> (<type>string</type>)</term>
333333
<listitem>
334334
<para>
335335
This option is a comma-separated list of names
@@ -350,7 +350,7 @@ OPTIONS (ADD password_required 'false');
350350
</varlistentry>
351351

352352
<varlistentry>
353-
<term><literal>fetch_size</literal></term>
353+
<term><literal>fetch_size</literal> (<type>integer</type>)</term>
354354
<listitem>
355355
<para>
356356
This option specifies the number of rows <filename>postgres_fdw</filename>
@@ -363,7 +363,7 @@ OPTIONS (ADD password_required 'false');
363363
</varlistentry>
364364

365365
<varlistentry>
366-
<term><literal>batch_size</literal></term>
366+
<term><literal>batch_size</literal> (<type>integer</type>)</term>
367367
<listitem>
368368
<para>
369369
This option specifies the number of rows <filename>postgres_fdw</filename>
@@ -403,7 +403,7 @@ OPTIONS (ADD password_required 'false');
403403
<variablelist>
404404

405405
<varlistentry>
406-
<term><literal>async_capable</literal></term>
406+
<term><literal>async_capable</literal> (<type>boolean</type>)</term>
407407
<listitem>
408408
<para>
409409
This option controls whether <filename>postgres_fdw</filename> allows
@@ -452,7 +452,7 @@ OPTIONS (ADD password_required 'false');
452452
<variablelist>
453453

454454
<varlistentry>
455-
<term><literal>updatable</literal></term>
455+
<term><literal>updatable</literal> (<type>boolean</type>)</term>
456456
<listitem>
457457
<para>
458458
This option controls whether <filename>postgres_fdw</filename> allows foreign
@@ -489,7 +489,7 @@ OPTIONS (ADD password_required 'false');
489489
<variablelist>
490490

491491
<varlistentry>
492-
<term><literal>truncatable</literal></term>
492+
<term><literal>truncatable</literal> (<type>boolean</type>)</term>
493493
<listitem>
494494
<para>
495495
This option controls whether <filename>postgres_fdw</filename> allows
@@ -528,7 +528,7 @@ OPTIONS (ADD password_required 'false');
528528

529529
<variablelist>
530530
<varlistentry>
531-
<term><literal>import_collate</literal></term>
531+
<term><literal>import_collate</literal> (<type>boolean</type>)</term>
532532
<listitem>
533533
<para>
534534
This option controls whether column <literal>COLLATE</literal> options
@@ -541,7 +541,7 @@ OPTIONS (ADD password_required 'false');
541541
</listitem>
542542
</varlistentry>
543543
<varlistentry>
544-
<term><literal>import_default</literal></term>
544+
<term><literal>import_default</literal> (<type>boolean</type>)</term>
545545
<listitem>
546546
<para>
547547
This option controls whether column <literal>DEFAULT</literal> expressions
@@ -556,7 +556,7 @@ OPTIONS (ADD password_required 'false');
556556
</listitem>
557557
</varlistentry>
558558
<varlistentry>
559-
<term><literal>import_not_null</literal></term>
559+
<term><literal>import_not_null</literal> (<type>boolean</type>)</term>
560560
<listitem>
561561
<para>
562562
This option controls whether column <literal>NOT NULL</literal>
@@ -606,7 +606,7 @@ OPTIONS (ADD password_required 'false');
606606
<variablelist>
607607

608608
<varlistentry>
609-
<term><literal>keep_connections</literal></term>
609+
<term><literal>keep_connections</literal> (<type>boolean</type>)</term>
610610
<listitem>
611611
<para>
612612
This option controls whether <filename>postgres_fdw</filename> keeps

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy