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
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
--
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