[PATCHES] more improvements to release notes

2003-10-21 Thread Neil Conway
This patch makes a bunch of improvements to the release notes. I only modified release.sgml -- HISTORY will need to be regenerated. I was able to remove almost all of the "Other uncategorized" release note entries, but left a few that I wasn't sure what to do with. We should remove this section, a

Re: [PATCHES] [HACKERS] obj_description problems?

2003-10-21 Thread Tom Lane
Christopher Kings-Lynne <[EMAIL PROTECTED]> writes: > OK, I will test them all today and get back to you. I checked them all before applying, but please do cross-check. We're close enough to release that double- and triple-checking patches is called for. regards, tom lane

Re: [PATCHES] [HACKERS] obj_description problems?

2003-10-21 Thread Christopher Kings-Lynne
Reviewed, tested, applied. Thanks. maybe should test all the other qualified functions? What other qualified functions? There might possibly be some issues in contrib stuff, but there are no other SQL-language functions defined in the main system (except information_schema, which we already ch

Re: [PATCHES] [HACKERS] obj_description problems?

2003-10-21 Thread Christopher Kings-Lynne
*sigh* - it's really not my day today. Attached is patch that actually compiles and fixes the problem. We will need to bump CATVERSION, and maybe should test all the other qualified functions? I think you've identified a real issue, but how many of these modified functions did you actually tes

Re: [PATCHES] [HACKERS] obj_description problems?

2003-10-21 Thread Tom Lane
Christopher Kings-Lynne <[EMAIL PROTECTED]> writes: > *sigh* - it's really not my day today. Attached is patch that actually > compiles and fixes the problem. We will need to bump CATVERSION, and Reviewed, tested, applied. > maybe should test all the other qualified functions? What other qua

Re: [PATCHES] AIX port current

2003-10-21 Thread Bruce Momjian
Applied by Tom. --- Zeugswetter Andreas SB SD wrote: > > On AIX 4.3.2 dlfcn.h is not compatible with fcntl.h in the given constellation > (both define FREAD and FWRITE differently) and since fcntl.h in c.h is only needed >

Re: [PATCHES] AIX port current

2003-10-21 Thread Tom Lane
"Zeugswetter Andreas SB SD" <[EMAIL PROTECTED]> writes: > On AIX 4.3.2 dlfcn.h is not compatible with fcntl.h in the given constellat= > ion > (both define FREAD and FWRITE differently) and since fcntl.h in c.h is only= > needed=20 > for O_BINARY I suggest to include fcntl.h only if O_BINARY is ne

Re: [PATCHES] pg_dump problems against 7.0

2003-10-21 Thread Bruce Momjian
Applied by Tom. Thanks. --- Christopher Kings-Lynne wrote: > >>Doh. Quite right. Well, the 7.0 initdb creates pg_indexes as the last > >>thing it does. (Even though there are higher oids in pg_attribute, > >>pg_rewrite

Re: [PATCHES] [HACKERS] obj_description problems?

2003-10-21 Thread Tom Lane
Christopher Kings-Lynne <[EMAIL PROTECTED]> writes: > *sigh* - it's really not my day today. Attached is patch that actually > compiles and fixes the problem. We will need to bump CATVERSION, and > maybe should test all the other qualified functions? I think you've identified a real issue, but

Re: [PATCHES] AIX port current

2003-10-21 Thread Tom Lane
"Zeugswetter Andreas SB SD" <[EMAIL PROTECTED]> writes: >> I don't feel that this will fly. > (iirc the include was introduced with the windows port, no ?) Hmm, you are right; 7.3 c.h has #ifdef __CYGWIN__ #include #include /* ensure O_BINARY is available */ #endif so actuall

Re: [PATCHES] AIX port current

2003-10-21 Thread Zeugswetter Andreas SB SD
> > #include > > + #if defined(__CYGWIN__) || defined(WIN32) > > #include /* ensure O_BINARY is > > available */ > > + #endif > > I don't feel that this will fly. The comment on the #include line is > hopelessly out of touch with reality --- if you check the