[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

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 out

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 previous

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' ---

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] 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: Perhaps you

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] 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:

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] 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

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:

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] 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 your

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.