Re: unimplemented functions

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: unimplemented functions
Дата
Msg-id 24446.1079710370@sss.pgh.pa.us
обсуждение исходный текст
Ответ на unimplemented functions  (chris@zenmgt.com)
Список pgsql-admin
chris@zenmgt.com writes:
> ERROR:  adding columns with defaults is not implemented
> HINT:  Add the column, then use ALTER TABLE SET DEFAULT.

> When will this be fixed?

Probably not very soon, as it is easily worked around, and the
spec-mandated behavior is not necessarily what you want anyway.

ALTER TABLE t ADD COLUMN c INT DEFAULT 42;

is equivalent per SQL spec to

ALTER TABLE t ADD COLUMN c INT;
ALTER TABLE t ALTER COLUMN c SET DEFAULT 42;
UPDATE t SET c = DEFAULT;

That last step is fairly expensive since it forces an update of every
row of the table.  (The ALTERs themselves only touch catalog data and
are cheap even with large tables.)  If you are intending to load the new
column with non-default values then you probably don't really want the
UPDATE step.  Without it, the new column will read as NULL until you
get around to setting it.

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: pgdump - What happens to data modifications (INSERT, UPDATE, DELETE) while pgdump is running?
Следующее
От: Tom Lane
Дата:
Сообщение: Re: create function problem