Обсуждение: pgsql: Cause ALTER TABLE to perform ALTER COLUMN DROP DEFAULT operations

Поиск
Список
Период
Сортировка

pgsql: Cause ALTER TABLE to perform ALTER COLUMN DROP DEFAULT operations

От
tgl@postgresql.org (Tom Lane)
Дата:
Log Message:
-----------
Cause ALTER TABLE to perform ALTER COLUMN DROP DEFAULT operations during
the DROP pass rather than the ADD_CONSTR pass.  On examining the code I
think this was just an oversight rather than intentional, and it seems
to satisfy the principle of least surprise better than the alternative
solution that was discussed.  Add an example to the ref page showing how
to do ALTER TYPE and update the default in one command.  Per gripe from
Markus Bertheau that that wasn't possible.

Modified Files:
--------------
    pgsql/doc/src/sgml/ref:
        alter_table.sgml (r1.87 -> r1.88)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/ref/alter_table.sgml.diff?r1=1.87&r2=1.88)
    pgsql/src/backend/commands:
        tablecmds.c (r1.198 -> r1.199)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/commands/tablecmds.c.diff?r1=1.198&r2=1.199)