Обсуждение: pgsql/doc/src/sgml/ref alter_table.sgml

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

pgsql/doc/src/sgml/ref alter_table.sgml

От
momjian@postgresql.org (Bruce Momjian - CVS)
Дата:
CVSROOT:    /cvsroot
Module name:    pgsql
Changes by:    momjian@postgresql.org    02/04/23 22:40:45

Modified files:
    doc/src/sgml/ref: alter_table.sgml

Log message:
    Oops, wrong commit on previous.  It was:

    The attached patch allows views to have default values. You can't
    specify a default value within a CREATE VIEW statement, it must be
    done using ALTER TABLE ... ALTER COLUMN ... SET DEFAULT after the
    view has already been created. Most of the hard work was done by
    Tom Lane, I just patched pg_dump and updated the documentation.

    Neil Conway <neilconway@rogers.com>