Re: Parallel INSERT (INTO ... SELECT ...)

Поиск
Список
Период
Сортировка
От Amit Kapila
Тема Re: Parallel INSERT (INTO ... SELECT ...)
Дата
Msg-id CAA4eK1JoGpPfMyQuFOgEhb+gmH6odA39enMjUx-563McA4H1JA@mail.gmail.com
обсуждение исходный текст
Ответ на Parallel INSERT (INTO ... SELECT ...)  (Greg Nancarrow <gregn4422@gmail.com>)
Ответы RE: Parallel INSERT (INTO ... SELECT ...)  ("houzj.fnst@fujitsu.com" <houzj.fnst@fujitsu.com>)
Список pgsql-hackers
On Thu, Mar 18, 2021 at 8:30 AM Justin Pryzby <pryzby@telsasoft.com> wrote:
>
> diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml
> index ff1b642722..d5d356f2de 100644
> --- a/doc/src/sgml/ref/create_table.sgml
> +++ b/doc/src/sgml/ref/create_table.sgml
> @@ -1338,8 +1338,10 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM
>      If a table parameter value is set and the
>      equivalent <literal>toast.</literal> parameter is not, the TOAST table
>      will use the table's parameter value.
> -    Specifying these parameters for partitioned tables is not supported,
> -    but you may specify them for individual leaf partitions.
> +    These parameters, with the exception of
> +    <literal>parallel_insert_enabled</literal>,
> +    are not supported on partitioned tables, but may be specified for
> +    individual leaf partitions.
>     </para>
>

Your patch looks good to me. While checking this, I notice a typo in
the previous patch:
-      planner parameter <varname>parallel_workers</varname>.
+      planner parameter <varname>parallel_workers</varname> and
+      <varname>parallel_insert_enabled</varname>.

Here, it should be /planner parameter/planner parameters.

-- 
With Regards,
Amit Kapila.



В списке pgsql-hackers по дате отправления:

Предыдущее
От: Peter Geoghegan
Дата:
Сообщение: Re: New IndexAM API controlling index vacuum strategies
Следующее
От: "houzj.fnst@fujitsu.com"
Дата:
Сообщение: RE: Parallel INSERT (INTO ... SELECT ...)