[PATCHES] [pgsql-hackers-win32] pg_ctl --help

2004-07-15 Thread Claudio Natoli
pg_ctl --help ---skiped--- -P user name of account to register PostgreSQL server -U password of account to register PostgreSQL server ---skiped--- I think that isn't right ;) Good thinking... :-) Patch attached (but probably easier for any committer to make the change

Re: [PATCHES] build infrastructure for extensions v3

2004-07-15 Thread Fabien COELHO
Dear Peter, I am still opposed to adding more targets of the form light-install, It is a renaming of the previous 'install' target, as the new install is the previous 'server-install', so it is no different from the current status. I let 'light-install' as a compromise wrt Tom view that the

Re: [PATCHES] build infrastructure for extensions v3

2004-07-15 Thread Bruce Momjian
Patch withdrawn by author. --- Fabien COELHO wrote: Dear patchers, Please find attached version number 3 for a patch to enable extensions such as contribs or external add-ons to be installed simply with an already

Re: [PATCHES] serverlog rotation/functions

2004-07-15 Thread Bruce Momjian
Path withdrawn by author. --- Andreas Pflug wrote: Updated version. Only timestamp of fresh logfile in shared mem, with sanity checks. On SIGHUP, timestamp is checked if rotation was issued, as well as changed

Re: [PATCHES] add missing options to pg_dumpall

2004-07-15 Thread Bruce Momjian
Your patch has been added to the PostgreSQL unapplied patches list at: http://momjian.postgresql.org/cgi-bin/pgpatches It will be applied as soon as one of the PostgreSQL committers reviews and approves it. ---

Re: [PATCHES] [HACKERS] possibly updating techdocs; mysql2pgsql on gborg

2004-07-15 Thread joe speigle
hi, just a contrib/mysql/README patch. Somehow the links got reversed. 5c5 http://gborg.postgresql.org/project/mysql2psql/projdisplay.php --- http://www.omnistarinc.com/~fonin/downloads.php#my2pg 9c9 Another tool, mysql2pgsql, can be found at: --- A third tool, mysql2pgsql.perl,

Re: [PATCHES] [HACKERS] possibly updating techdocs; mysql2pgsql on gborg

2004-07-15 Thread Bruce Momjian
Thanks, fixed. --- joe speigle wrote: hi, just a contrib/mysql/README patch. Somehow the links got reversed. 5c5 http://gborg.postgresql.org/project/mysql2psql/projdisplay.php ---

[PATCHES] win32 readline

2004-07-15 Thread Magnus Hagander
Readline is pretty badly broken under mingw. Basically, it disables the alt-gr key, which renders psql almost useless on most locales (no way to type backslash, and a whole lot of other characters, for example). This patch disables readline on win32. (meaning it's back to working the way it did

[PATCHES] initdb authentication

2004-07-15 Thread Magnus Hagander
Ok, here is one more try at the initdb default authentication stuff. This one adds the switches --ident and --trust, which will configure pg_hba.conf with ident and trust authentication respectively. If trust authentication is selected, a warning is written to pg_hba.conf. The old switches for

Re: [PATCHES] initdb authentication

2004-07-15 Thread Peter Eisentraut
Magnus Hagander wrote: This one makes it mandatory to pick some kind of authentication. If that's not wanted, it's easy to change it to default to trust (which I think is wrong, but we've been through that already..) I don't think I like any of this. Sooner rather than later, people need to

Re: [PATCHES] initdb authentication

2004-07-15 Thread Bruce Momjian
Peter Eisentraut wrote: Magnus Hagander wrote: This one makes it mandatory to pick some kind of authentication. If that's not wanted, it's easy to change it to default to trust (which I think is wrong, but we've been through that already..) I don't think I like any of this. Sooner

Re: [PATCHES] initdb authentication

2004-07-15 Thread Alvaro Herrera
On Thu, Jul 15, 2004 at 11:20:46PM +0200, Peter Eisentraut wrote: Magnus Hagander wrote: This one makes it mandatory to pick some kind of authentication. If that's not wanted, it's easy to change it to default to trust (which I think is wrong, but we've been through that already..) I

Re: [PATCHES] initdb authentication

2004-07-15 Thread Tom Lane
Bruce Momjian [EMAIL PROTECTED] writes: I think the basic problem is that right now there is no way to do an initdb and have it be secure _before_ you edit pg_hba.conf. That isn't acceptable. If I am on an insecure machine, the window if time between initdb and editing of pg_hba.conf is

Re: [PATCHES] initdb authentication

2004-07-15 Thread Bruce Momjian
Tom Lane wrote: Bruce Momjian [EMAIL PROTECTED] writes: I think the basic problem is that right now there is no way to do an initdb and have it be secure _before_ you edit pg_hba.conf. That isn't acceptable. If I am on an insecure machine, the window if time between initdb and editing

Re: [PATCHES] [subxacts] Savepoint syntax

2004-07-15 Thread Alvaro Herrera
On Wed, Jul 14, 2004 at 03:03:02PM -0400, Alvaro Herrera wrote: Please test, review and apply. If anyone is able to crash the server using this I'll be most interested. I just noticed that the misc regression test is generated, and so it needs to be patched ... interdiff output attached. --