syntax error with alter type - Mailing list pgsql-general

From Kevin Brannen
Subject syntax error with alter type
Date
Msg-id SN1PR19MB0255E21F90F7B01FBD4CF835A4AA0@SN1PR19MB0255.namprd19.prod.outlook.com
Whole thread Raw
Responses Re: syntax error with alter type  (Adrian Klaver <adrian.klaver@aklaver.com>)
List pgsql-general

I’m running Pg 9.6.5 if it matters…

 

I’m trying to drop a value from an ENUM (type) and it seems like I’m following the fine manual yet I still get an error. For example:

 

nms=# create type alphabet as enum ('a', 'b', 'c', 'd');

CREATE TYPE

 

nms=# alter type alphabet drop attribute if exists 'c';

ERROR:  42601: syntax error at or near "'c'"

LINE 1: alter type alphabet drop attribute if exists 'c';

                                                     ^

LOCATION:  scanner_yyerror, scan.l:1086

 

What am I doing wrong? The goal is to get rid of the ‘c’ value from the enum. Yes, you can assume I’ve already removed of all the ‘c’ values in the table where it’s used.

 

Or does that statement not do what I think it does and I have to do the “create new type, change the table to use the new type, drop old type, rename new type to old type” routine?

 

Thanks,

Kevin

This e-mail transmission, and any documents, files or previous e-mail messages attached to it, may contain confidential information. If you are not the intended recipient, or a person responsible for delivering it to the intended recipient, you are hereby notified that any disclosure, distribution, review, copy or use of any of the information contained in or attached to this message is STRICTLY PROHIBITED. If you have received this transmission in error, please immediately notify us by reply e-mail, and destroy the original transmission and its attachments without reading them or saving them to disk. Thank you.

pgsql-general by date:

Previous
From: Adrian Klaver
Date:
Subject: Re: Importing tab delimited text file using phpPgAdmin 5.1 GUI
Next
From: Adrian Klaver
Date:
Subject: Re: syntax error with alter type