BufFileWrite across MAX_PHYSICAL_FILESIZE boundary

Поиск
Список
Период
Сортировка
От Kurt Harriman
Тема BufFileWrite across MAX_PHYSICAL_FILESIZE boundary
Дата
Msg-id 463F91B8.8060806@greenplum.com
обсуждение исходный текст
Ответы Re: BufFileWrite across MAX_PHYSICAL_FILESIZE boundary  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
Just noticed buffile.c:292 doesn't look quite right where
BufFileDumpBuffer calls FileWrite:    bytestowrite = FileWrite(thisfile, file->buffer, bytestowrite);
It looks as though it would write the same data each time the
loop is iterated.  Would this be better?    bytestowrite = FileWrite(thisfile, file->buffer + wpos, bytestowrite);




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

Предыдущее
От: "Joshua D. Drake"
Дата:
Сообщение: Re: Re: [COMMITTERS] psqlodbc - psqlodbc: Put Autotools-generated files into subdirectory
Следующее
От: Tom Lane
Дата:
Сообщение: Behavior of GENERATED columns per SQL2003