Re: [PATCHES] [INTERFACES] [BUGS] BUG #2171: Differences compiling plpgsql in ecpg and psql

2006-02-09 Thread Michael Meskes
Actually ecpg should not translate dollar quoting at all. I'm going to fix this. Dollar quotes will then be send to the backend with translation and the backend takes care of the rest. Well, CVS version before I modified it had dolq stuff in the lexer to handle dollar quotes and pass it

Re: [PATCHES] [HACKERS] Krb5 multiple DB connections

2006-02-09 Thread Stephen Frost
* Tom Lane ([EMAIL PROTECTED]) wrote: Stephen Frost [EMAIL PROTECTED] writes: I have little idea of how expensive the operations called by pg_krb5_init really are. If they are expensive then it'd probably make sense to keep the current static variables but treat 'em as a one-element

Re: [PATCHES] In pg_dump no owner mode don't dump owner names in comments

2006-02-09 Thread Bruce Momjian
Patch applied. Thanks. --- Christopher Kings-Lynne wrote: This fixes pg_dump so that when using the '-O' no owners option it does not print the owner name in the object comment. eg: -- -- Name: actor; Type:

Re: [PATCHES] contrib/xinetops for 8.1 patch

2006-02-09 Thread Tom Lane
Bruce Momjian pgman@candle.pha.pa.us writes: A larger problem is this: test= SELECT '255.255.255.0'::inet - '1.1.1.1'::inet; ?column? --- -16843265 (1 row) Should subtraction return int8? Probably, and for that matter the addition operators should

Re: [PATCHES] [PATCH] psql formatting patch (round 2)

2006-02-09 Thread Bruce Momjian
Modified patch attached and applied. I made some style changes and had some merge conflicts because wchar.c has changed since 8.1. The change to libpq's PQdsplen() seems like a good one and I will mention it in the release notes.

Re: [PATCHES] [PATCH] psql formatting patch (round 2)

2006-02-09 Thread Bruce Momjian
Oh, one more thing. The only user-visible change I saw in the regression tests is that a SELECT * on a table where all the columns have been dropped doesn't return a blank line like before. This seems like a step forward. Usage example: test= SELECT '1\n2\n3', 'a\nb\nc';

Re: [PATCHES] contrib/xinetops for 8.1 patch

2006-02-09 Thread Bruce Momjian
Tom Lane wrote: Bruce Momjian pgman@candle.pha.pa.us writes: A larger problem is this: test= SELECT '255.255.255.0'::inet - '1.1.1.1'::inet; ?column? --- -16843265 (1 row) Should subtraction return int8? Probably, and for that matter the addition