Re: [PATCH] Performance Improvement For Copy From Binary Files

Поиск
Список
Период
Сортировка
От Bharath Rupireddy
Тема Re: [PATCH] Performance Improvement For Copy From Binary Files
Дата
Msg-id CALj2ACULf3JEx+eD9xncJ0H-6w6Ep7-ypywotp2AaHrYVxrsxw@mail.gmail.com
обсуждение исходный текст
Ответ на Re: [PATCH] Performance Improvement For Copy From Binary Files  (vignesh C <vignesh21@gmail.com>)
Ответы Re: [PATCH] Performance Improvement For Copy From Binary Files
Список pgsql-hackers
>
> I had one small comment:
> +{
> +       int             copied_bytes = 0;
> +
> +#define BUF_BYTES      (cstate->raw_buf_len - cstate->raw_buf_index)
> +#define DRAIN_COPY_RAW_BUF(cstate, dest, nbytes)\
> +       do {\
> +               memcpy((dest), (cstate)->raw_buf +
> (cstate)->raw_buf_index, (nbytes));\
> +               (cstate)->raw_buf_index += (nbytes);\
> +       } while(0)
>
> BUF_BYTES could be used in CopyLoadRawBuf function also.
>

Thanks Vignesh for the find out. I changed and attached the v5 patch.
The regression tests(make check and make check-world) ran
successfully.

With Regards,
Bharath Rupireddy.
EnterpriseDB: http://www.enterprisedb.com

Вложения

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

Предыдущее
От: Daniel Gustafsson
Дата:
Сообщение: Re: proposal: possibility to read dumped table's name from file
Следующее
От: Tomas Vondra
Дата:
Сообщение: Re: WIP: BRIN multi-range indexes