pgsql: there's a paragraph in the ALTER TABLE reference page that reads:

Поиск
Список
Период
Сортировка
От momjian@postgresql.org (Bruce Momjian)
Тема pgsql: there's a paragraph in the ALTER TABLE reference page that reads:
Дата
Msg-id 20051208213542.0EDF09DCB78@postgresql.org
обсуждение исходный текст
Список pgsql-committers
Log Message:
-----------
there's a paragraph in the ALTER TABLE reference page that reads:

DROP CONSTRAINT

    This form drops constraints on a table. Currently, constraints on tables
    are not required to have unique names, so there may be more than one
    constraint matching the specified name. All matching constraints will be
    dropped.

To my knowledge, it is no longer possible to create constraints with the
same name for the same relation. When you create a constraint and specify
the same name explictly, an error is raised. Implicit constraint creation
won't choose an existing name either and up to now you could not rename a
constraint. Renaming works with the patch I sent in a few hours ago but this
patch as well won't allow constraints with identical names on the same
relation.

The attached patch thus removes the note in the docs.

Joachim Wieland

Tags:
----
REL8_1_STABLE

Modified Files:
--------------
    pgsql/doc/src/sgml/ref:
        alter_table.sgml (r1.81 -> r1.81.2.1)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/ref/alter_table.sgml.diff?r1=1.81&r2=1.81.2.1)

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

Предыдущее
От: momjian@postgresql.org (Bruce Momjian)
Дата:
Сообщение: pgsql: there's a paragraph in the ALTER TABLE reference page that reads:
Следующее
От: momjian@postgresql.org (Bruce Momjian)
Дата:
Сообщение: pgsql: FAQ_AIX in 8.1.0 contains outdated information about how to deal