Re: unimplemented functions - Mailing list pgsql-admin

From Tom Lane
Subject Re: unimplemented functions
Date
Msg-id 24446.1079710370@sss.pgh.pa.us
Whole thread Raw
In response to unimplemented functions  (chris@zenmgt.com)
List 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 by date:

Previous
From: Tom Lane
Date:
Subject: Re: pgdump - What happens to data modifications (INSERT, UPDATE, DELETE) while pgdump is running?
Next
From: Tom Lane
Date:
Subject: Re: create function problem