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

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: alter column type from boolean to char with default doesn't work
Дата
Msg-id 15041.1154524770@sss.pgh.pa.us
обсуждение исходный текст
Ответ на alter column type from boolean to char with default doesn't work  ("Markus Bertheau" <mbertheau.pg@googlemail.com>)
Ответы Re: alter column type from boolean to char with default  (Rod Taylor <pg@rbt.ca>)
Список pgsql-sql
"Markus Bertheau" <mbertheau.pg@googlemail.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
deletedset 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


В списке pgsql-sql по дате отправления:

Предыдущее
От: Richard Broersma Jr
Дата:
Сообщение: Re: How to use table from one database to another
Следующее
От: Rod Taylor
Дата:
Сообщение: Re: alter column type from boolean to char with default