Bruce Momjian writes: > I think you are right that we have to not use off_t and use long if we > can't find a proper 64-bit seek function, but what are the failure modes > of doing this? Exactly what happens for larger files?
First we need to decide what we want to happen and after that think about how to implement it. Given sizeof(off_t) > sizeof(long) and no fseeko(), we have the following options: 1. Disable access to large files. 2. Seek in some other way. What's it gonna be? -- Peter Eisentraut [EMAIL PROTECTED] ---------------------------(end of broadcast)--------------------------- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly