Re: [HACKERS] [PATCHES] PATCH: Memory leaks on start-up

2003-07-26 Thread Bruce Momjian
This patch no longer applies cleanly. The call is now: freeaddrinfo_all(hint.ai_family, addrs); Would you please submit a new patch, or is it no longer required? There were two fixed in your patch. Thanks. --

Re: [PATCHES] ruleutils with pretty-print option

2003-07-26 Thread Bruce Momjian
I am seeing the following regression failures from the patch to allow pretty printing pg_get_*def functions. Are these illustrating a problem with the function definition, or is it happening because it is the first time we are calling the same function with one and more than one parameter? In fa

Re: [PATCHES] [HACKERS] allowed user/db variables

2003-07-26 Thread Joe Conway
Bruce Momjian wrote: Patch applied. Thanks. There was enough code drift since this patch, that a couple of bugs materialized. New items have been added to GucContext and GucSource enums, but of course they were not added to the corresponding GucContextName[] and GucSourceName[] arrays in the

Re: [PATCHES] timetravel.c

2003-07-26 Thread Bruce Momjian
Patch applied. Thanks. --- Böjthe Zoltán wrote: > Bruce Momjian ?rta: > > >Great. Please send over the file as an attachment and I will see that > >it is added, or even better, use diff -c against the 7.3.2 version and >

Re: [PATCHES] Eliminate information_schema from oid2name listing

2003-07-26 Thread Bruce Momjian
Patch attached and applied. --- Tom Lane wrote: > Peter Eisentraut <[EMAIL PROTECTED]> writes: > > Kenji Sugita writes: > >> This small patch eliminates relations in information_schema from oid2name > >> listing. > > > Why

Re: [PATCHES] [HACKERS] allowed user/db variables

2003-07-26 Thread Bruce Momjian
Patch applied. Thanks. --- Joe Conway wrote: > I'm going to resend the patches that I have outstanding since it appears > some may have been lost. Here's the third of three. > =

Re: [PATCHES] [NOVICE] connectby(... pos_of_sibling)

2003-07-26 Thread Bruce Momjian
Patch applied. Thanks. --- Joe Conway wrote: > I'm going to resend the patches that I have outstanding since it appears > some may have been lost. Here's the second of three. >

Re: [PATCHES] nitpick consistency patch for pg_dump.c

2003-07-26 Thread Bruce Momjian
This was the actual patch applied. --- Andrew Dunstan wrote: > > trivial or not the patch was broken. *sigh*. it's been a long day. > > This patch will work. > > sorry > > andrew > > RCS file: /projects/cvsroot/pgsql-se

Re: [PATCHES] nitpick consistency patch for pg_dump.c

2003-07-26 Thread Bruce Momjian
Newer patch applied. Thanks. --- Andrew Dunstan wrote: > > This is a totally trivial patch for something that was a very minor nit that > annoyed me the other day while I was documenting my current project. It > makes pg

Re: [PATCHES] psql patches for win32

2003-07-26 Thread Bruce Momjian
Patch applied. Thanks. --- Christoph Dalitz wrote: > Hello Bruce, > > here are the patches for psql on Win32: > > psql4win32.patch - changes in the psql source code > psql-ref.patch- changes in the documentation

Re: [PATCHES] patch for Oracle initcap compatibility

2003-07-26 Thread Bruce Momjian
Patch applied. Thanks. --- [EMAIL PROTECTED] wrote: > This makes the initcap function compatible with Oracle 9i, it has been > tested on both redhat 8 and FreebSD. > -- > Mike Nolan > > RCS file: /projects/cvsroot/pgsql-

Re: [PATCHES] An additional foreign key test for regression

2003-07-26 Thread Bruce Momjian
Patch applied. Thanks. I adjusted the patch to match the new elog output. --- Stephan Szabo wrote: > > The deferred trigger queue pushing to disk patch pointed out > that the regression tests for foreign keys didn't seem

Re: [PATCHES] "fix" for plpgsql polymorphism

2003-07-26 Thread Bruce Momjian
Patch applied. Thanks. --- Joe Conway wrote: > Tom Lane wrote: > >>You can alias $0, similar to the argument variables. And, I confirmed > >>that you cannot change the value, similar to the argument variables: > > > > P

Re: [PATCHES] fix linux startup script

2003-07-26 Thread Bruce Momjian
Thanks. Patch applied. --- Slawomir Sudnik wrote: > Hi, > > Linux startuap script doesn't work. > This patch correct linux startup script. > > Index: linux > ==

Re: [PATCHES] timestamp date_trunc('quarter',...)

2003-07-26 Thread Bruce Momjian
Patch applied. Thanks. --- Böjthe Zoltán wrote: > I corecting date_trunc('quarter',...) and friends because orig version > doing '2003-07-30' -> '2003-04-01', '2003-11-30' ->'2003-07-01' > --- src/backend/utils/adt/time

Re: [PATCHES] Revised sslmode patch

2003-07-26 Thread Bruce Momjian
This is the actual patch applied. --- Jon Jensen wrote: > Hi. > > This is a revised patch for the sslmode functionality. It fixes bugs in > both documentation and code, and adds a few more tests. Please discard my > previ

Re: [PATCHES] sslmode patch

2003-07-26 Thread Bruce Momjian
Newest patch applied. Thanks. --- Jon Jensen wrote: > Folks, > > At long last I put together a patch to support 4 client SSL negotiation > modes (and replace the requiressl boolean). The four options were first > spelled

[PATCHES] updateable cursors

2003-07-26 Thread Gavin Sherry
Attached is a patch implementing updatable cursors in HEAD. Regression test and documentation are included. Updateable cursors are used as follows: begin; declare foo cursor for select * from bar for update; fetch foo; update bar set abc='def' where current of foo; fetch foo; delete from bar wher