Re: POC: postgres_fdw insert batching

Поиск
Список
Период
Сортировка
От Ian Lawrence Barwick
Тема Re: POC: postgres_fdw insert batching
Дата
Msg-id CAB8KJ=hCOF+88mxPzxT05i=DswbWXwcn-+zWij5-9eogcHu2Aw@mail.gmail.com
обсуждение исходный текст
Ответ на Re: POC: postgres_fdw insert batching  (Ian Lawrence Barwick <barwick@gmail.com>)
Ответы Re: POC: postgres_fdw insert batching  (Tomas Vondra <tomas.vondra@enterprisedb.com>)
Список pgsql-hackers


2021年1月22日(金) 14:50 Ian Lawrence Barwick <barwick@gmail.com>:
Hi

2021年1月21日(木) 8:00 Tomas Vondra <tomas.vondra@enterprisedb.com>:
OK, pushed after a little bit of additional polishing (mostly comments).

Thanks everyone!

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:


Regards

Ian Barwick

--

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

Предыдущее
От: Ian Lawrence Barwick
Дата:
Сообщение: Re: POC: postgres_fdw insert batching
Следующее
От: Thomas Munro
Дата:
Сообщение: Re: psql tab completion for CREATE DATABASE ... LOCALE