From f8ea98e3b3c97272a04b8ff0967f25aa648d6c41 Mon Sep 17 00:00:00 2001 From: Vignesh C Date: Tue, 21 Jul 2020 11:13:10 +0530 Subject: [PATCH v2 4/6] Documentation for parallel copy. This patch has the documentation changes for parallel copy. --- doc/src/sgml/ref/copy.sgml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml index 18189ab..95d349d 100644 --- a/doc/src/sgml/ref/copy.sgml +++ b/doc/src/sgml/ref/copy.sgml @@ -37,6 +37,7 @@ COPY { table_name [ ( delimiter_character' NULL 'null_string' HEADER [ boolean ] + PARALLEL integer QUOTE 'quote_character' ESCAPE 'escape_character' FORCE_QUOTE { ( column_name [, ...] ) | * } @@ -275,6 +276,21 @@ COPY { table_name [ ( + PARALLEL + + + Perform COPY FROM in parallel using integer background workers. Please + note that it is not guaranteed that the number of parallel workers + specified in integer will + be used during execution. It is possible for a copy to run with fewer + workers than specified, or even with no workers at all. This option is + allowed only in COPY FROM. + + + + + QUOTE -- 1.8.3.1