Re: alter column type from boolean to char with default doesn't work

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Markus Bertheau" <mbertheau(dot)pg(at)googlemail(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: alter column type from boolean to char with default doesn't work
Date: 2006-08-02 13:19:30
Message-ID: 15041.1154524770@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

"Markus Bertheau" <mbertheau(dot)pg(at)googlemail(dot)com> writes:
> I basically want to change a boolean column to char. The boolean
> column has a default of true. The char column should have 'f' for
> false and 't' for true. I think that an SQL statement like the
> following should work, but it doesn't:

Hmm ... the way I would have expected to work is

alter table posts
alter column deleted drop default,
alter column deleted type char(1)
using (case when deleted then 't' else 'f' end),
alter column deleted set default 'f';

but that does not work either --- you have to do it in more than one
command:

begin;
alter table posts
alter column deleted drop default;
alter table posts
alter column deleted type char(1)
using (case when deleted then 't' else 'f' end),
alter column deleted set default 'f';
commit;

We could fix this by tweaking ATPrepCmd to schedule drop-default
subcommands in an earlier pass than alter-type, and set-default
subcommands afterwards. However I think the way it's done now
was chosen to avoid surprising behavior in corner cases like

alter table foo
alter column bar set default ...,
alter column bar drop default;

You'd expect this to leave you with no default, but with the change
the DROP part would be re-ordered to occur first. So maybe the
cure is worse than the disease. OTOH that's a pretty silly example,
whereas wanting to ALTER TYPE and fix the default in a single command
is quite reasonable. Thoughts?

regards, tom lane

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Rod Taylor 2006-08-02 13:56:23 Re: alter column type from boolean to char with default
Previous Message Richard Broersma Jr 2006-08-02 13:12:51 Re: How to use table from one database to another