From f06311aab275234125ed5b2c1a5c4740db55df3f Mon Sep 17 00:00:00 2001 From: Vignesh C Date: Wed, 17 Jun 2020 07:34:56 +0530 Subject: [PATCH 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