Bug in CREATE USER script

From: "Darko Prenosil" <Darko(dot)Prenosil(at)finteh(dot)hr>
To: <pgadmin-hackers(at)postgresql(dot)org>
Subject: Bug in CREATE USER script
Date: 2004-08-13 20:59:29
Message-ID: 000c01c48178$86048bc0$3d81bfd5@darko
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Create script for user have a serious bug:

CREATE USER test
WITH SYSID 101
PASSWORD ENCRYPTED md5c104555d849cf47bd82febf072dd479c
NOCREATEDB NOCREATEUSER;

and it should be :

CREATE USER test
WITH SYSID 101
ENCRYPTED PASSWORD 'md5c104555d849cf47bd82febf072dd479c'
NOCREATEDB NOCREATEUSER;

Please change the order of ENCRYPTED and PASSWORD keywords and quote the
password string, or should I do the patch ?
Regards !

Browse pgadmin-hackers by date

  From Date Subject
Next Message Raphaël Enrici 2004-08-13 22:33:35 Re: build error pgadmin3-src-20040805.tar.gz
Previous Message cvs 2004-08-13 16:56:46 CVS Commit by andreas: bugs update