Re: POC: postgres_fdw insert batching

Поиск
Список
Период
Сортировка
От Tomas Vondra
Тема Re: POC: postgres_fdw insert batching
Дата
Msg-id af6605fc-8c53-29c3-a096-d7258b3c0c23@enterprisedb.com
обсуждение исходный текст
Ответ на Re: POC: postgres_fdw insert batching  (Ian Lawrence Barwick <barwick@gmail.com>)
Список pgsql-hackers
On 2/5/21 2:55 AM, Ian Lawrence Barwick wrote:
> ...
> 
>     There's a minor typo in the doc's version of the
>     ExecForeignBatchInsert() declaration;
>     is:
> 
>         TupleTableSlot **
>         ExecForeignBatchInsert(EState *estate,
>                           ResultRelInfo *rinfo,
>                           TupleTableSlot **slots,
>                           TupleTableSlot *planSlots,
>                           int *numSlots);
> 
>     should be:
> 
>         TupleTableSlot **
>         ExecForeignBatchInsert(EState *estate,
>                           ResultRelInfo *rinfo,
>                           TupleTableSlot **slots,
>                           TupleTableSlot **planSlots,
>                           int *numSlots);
> 
>     (Trivial patch attached).
> 
> 
> Forgot to mention the relevant doc link:
> 
>    
> https://www.postgresql.org/docs/devel/fdw-callbacks.html#FDW-CALLBACKS-UPDATE
> <https://www.postgresql.org/docs/devel/fdw-callbacks.html#FDW-CALLBACKS-UPDATE>
> 

Thanks, I'll get this fixed.

regards

-- 
Tomas Vondra
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company



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

Предыдущее
От: Tomas Vondra
Дата:
Сообщение: Re: Improvements and additions to COPY progress reporting
Следующее
От: Tomas Vondra
Дата:
Сообщение: Re: POC: postgres_fdw insert batching