Re: [BUGS] BUG #6216: Calling PQconnectdbParams from C++ with a char**

2011-09-22 Thread Craig Ringer
On 21/09/2011 4:25 PM, Lionel Elie Mamane wrote: I added my initial patch, and as far as I understand, I have to send the revised patch to the list before I can register it at the commitfest. So here is my revised patch, that uses "const char *const * " like elsewhere in the same file instead of

Re: [BUGS] drop enum problem

2011-09-22 Thread John R Pierce
On 09/22/11 3:43 PM, Gavin Flower wrote: gavin=> DROP TYPE raindow; ERROR: type "raindow" does not exist gavin=> CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green', 'blue', 'purple'); ERROR: type "rainbow" already exists PEBCAK. drop type rainDow create type rainBow --

[BUGS] drop enum problem

2011-09-22 Thread Gavin Flower
On a LInux 64 biut system: $ psql psql (9.1.0) Type "help" for help. gavin=> DROP TYPE raindow; ERROR: type "raindow" does not exist gavin=> CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green', 'blue', 'purple'); ERROR: type "rainbow" already exists gavin=> -- Sent via pgsql-bu