Re: [PATCHES] more fixes for making contrib null safe

2005-01-28 Thread Jon Jensen
e SQL, C, internal, or the name of a user-defined procedural language. For backward compatibility, the name may be enclosed by single quotes. Oh, ok. Good to know. Thanks, Jon -- Jon Jensen End Point Corporation http://www.endpoint.com/ Software development with Interchange, Perl, PostgreSQL, A

Re: [PATCHES] more fixes for making contrib null safe

2005-01-28 Thread Jon Jensen
On Fri, 28 Jan 2005, Kris Jurka wrote: This adds the strict function attribute to the places in contrib that crash on null inputs. Doesn't C need to be quoted? A few of those looked like this: LANGUAGE C STRICT but I thought it should be: LANGUAGE 'C' STRICT Is that right? Jon --

[PATCHES] Update for documentation on CVS

2004-12-01 Thread Jon Jensen
This is a little patch to correct the documentation on CVS. The URL for downloading CVS at cyclic.com site is long defunct, and I changed the text to not overtly recommend CVS 1.10, a now fairly old version. Jon -- Jon Jensen End Point Corporation http://www.endpoint.com/ Software development

[PATCHES] Forwarded mail....

2004-08-10 Thread Jon Jensen
Committers, I just installed PostgreSQL 8.0 beta 1 and found that initdb isn't supporting the -s alias for the --show option as it claims to. The trivial patch below fixes that and little misspellings in a comment. Jon -- Jon Jensen End Point Corporation http://www.endpoint.com/ Sof

Re: [PATCHES] log_line_info

2004-03-01 Thread Jon Jensen
On Sun, 29 Feb 2004, Andrew Dunstan wrote: > . changed source port reporting from host:port to host(port) to avoid > IP6 address ambiguity. I have no idea how widespread this is, but recent versions of BIND write it this way: 127.0.0.1#953 ::1#953 Personally I'd kind of like to see host:port

[PATCHES] pg_hba.conf patch for hostnossl

2003-09-11 Thread Jon Jensen
Hello. When I sent in the sslmode patch I forgot to update the comments/examples in pg_hba.conf. This patch remedies that, adds a brief explanation of the connection types, and adds a missing period in the docs. JonIndex: doc/src/sgml/client-auth.sgml =

[PATCHES] Revised sslmode patch

2003-07-11 Thread Jon Jensen
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 patch. Thanks, Jon sslmode.tar.gz Description: Binary data Index: doc/FAQ =

Re: [PATCHES] sslmode patch

2003-07-01 Thread Jon Jensen
On Tue, 1 Jul 2003, Bruce Momjian wrote: > > To sum up, there's a new client parameter "sslmode" and environment > > variable "PGSSLMODE", with these options: > > > > sslmode description > > --- --- > > prevent Unencrypted non-SSL only > > I think the word 'never' would be mor

[PATCHES] sslmode patch

2003-06-30 Thread Jon Jensen
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 by Magnus Hagander <[EMAIL PROTECTED]> on 2000-08-23 in email to pgsql-hackers, archived here: http://archives.postgresql.org/pgsql-ha

[PATCHES] Typo in backend/libpq/be-secure.c

2003-06-30 Thread Jon Jensen
PostgreSQL folks, I can't get SSL connections to work at all with the latest checkout from CVS HEAD. The culprit appears to be a typo as seen in patch below. Jon Index: backend/libpq/be-secure.c === RCS file: /projects/cvsroot/pgs