Re: pg_dump and large files - is this a problem?
От | Philip Warner |
---|---|
Тема | Re: pg_dump and large files - is this a problem? |
Дата | |
Msg-id | 5.1.0.14.0.20021024115925.028bea28@mail.rhyme.com.au обсуждение исходный текст |
Ответ на | Re: pg_dump and large files - is this a problem? (Philip Warner <pjw@rhyme.com.au>) |
Ответы |
Re: pg_dump and large files - is this a problem?
|
Список | pgsql-hackers |
At 11:55 AM 24/10/2002 +1000, Philip Warner wrote: >The only code that uses SEEK_CUR is the code to check if seek is available >- I am ver happy to change that to SEEK_SET - I can't even recall why I >used SEEK_CUR. The code that does the real seeks uses SEEK_SET. Come to think of it: ctx->hasSeek = (fseeko(AH->FH, 0, SEEK_CUR) == 0); should be replaced by: #ifdef HAS_FSEEK[O] ctx->hasSeek = TRUE; #else ctx->hasSeek = FALSE; #endif Since we're now checking for it in configure, we should remove the checks from the pg_dump code. ---------------------------------------------------------------- Philip Warner | __---_____ Albatross Consulting Pty. Ltd. |----/ - \ (A.B.N. 75 008 659 498) | /(@) ______---_ Tel: (+61) 0500 83 82 81 | _________ \ Fax: (+61) 0500 83 82 82 | ___________ | Http://www.rhyme.com.au | / \| | --________-- PGP key available upon request, | / and from pgp5.ai.mit.edu:11371 |/
В списке pgsql-hackers по дате отправления: