Re: [PATCHES] LDAP auth

2006-03-04 Thread Tom Lane
Awhile back, Magnus Hagander [EMAIL PROTECTED] wrote: This patch adds native LDAP auth, for those platforms that don't have PAM (such as Win32, but also unixen without PAM). On Unix, uses OpenLDAP. On win32, uses the builin WinLDAP library. Is this patch still live, or do you want to withdraw

[PATCHES] reorder GROUP BY list

2006-03-04 Thread Neil Conway
Per recent discussion on -hackers, we should sometimes try to reorder the columns of the grouping clause to avoid redundant sorts. The optimizer is not currently capable of doing this, so this patch implements a simple hack in the analysis phase (transformGroupClause): if any subset of the GROUP

Re: [PATCHES] reorder GROUP BY list

2006-03-04 Thread Tom Lane
Neil Conway [EMAIL PROTECTED] writes: Per recent discussion on -hackers, we should sometimes try to reorder the columns of the grouping clause to avoid redundant sorts. The optimizer is not currently capable of doing this, so this patch implements a simple hack in the analysis phase

Re: [PATCHES] drop if exists remainder

2006-03-04 Thread David Fetter
On Fri, Mar 03, 2006 at 03:35:24PM -0500, Andrew Dunstan wrote: Bruce Momjian wrote: Christopher Kings-Lynne wrote: What's the consensus on this? Nobody else has chimed in, so I'm inclined to do no more on the gounds of insufficient demand. Let's decide before too much bitrot occurs,

[PATCHES] fix of some issues with multi-line query editing

2006-03-04 Thread Sergey E. Koposov
Fix of several issues: 1) Fix the problems with the \s command. When the saveHistory is executed by the \s command we must not do the conversion \n - \x01 (per http://archives.postgresql.org/pgsql-hackers/2006-03/msg00317.php ) 2) Fix the handling of Ctrl+C Now when you do wsdb=# select

Re: [PATCHES] TODO-Item: include for guc

2006-03-04 Thread Bruce Momjian
Patch applied. Thanks. --- Joachim Wieland wrote: The attached patch is a revised version of the patch I sent in before: http://archives.postgresql.org/pgsql-patches/2005-12/msg00018.php The old version did not

Re: [PATCHES] Fix for /dev/tty on Win32

2006-03-04 Thread Bruce Momjian
Bruce Momjian wrote: I found a better solution to the /dev/tty on Win32. I used 'con' which works fine on Win32 except using the Msys 1.0.10 console, but it is probably the best solution. Can someone test if newer Msys consoles work with this? Added DEVTTY macro for simplicity. Applied