Column-level triggers in docs

Поиск
Список
Период
Сортировка
От Thom Brown
Тема Column-level triggers in docs
Дата
Msg-id AANLkTikh0ta8CbcGVMALqorDS75CrSjVwjtcg4AwndEN@mail.gmail.com
обсуждение исходный текст
Ответы Re: Column-level triggers in docs
Список pgsql-docs
I notice that the 9.0 docs page for CREATE TRIGGER doesn't indicate
column-level syntax in the synopsis:
http://www.postgresql.org/docs/9.0/static/sql-createtrigger.html

It does detail the additional syntax required for specifying a column
in the "event" parameter detail, but shouldn't this also be in the
synopsis?

So it would read something like:

CREATE TRIGGER name { BEFORE | AFTER } { event [ OF column_name [, ...
] ] [ OR ... ] }
    ON table [ FOR [ EACH ] { ROW | STATEMENT } ]
    [ WHEN ( condition ) ]
    EXECUTE PROCEDURE function_name ( arguments )

--
Thom Brown
Twitter: @darkixion
IRC (freenode): dark_ixion
Registered Linux user: #516935

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

Предыдущее
От: Dmitriy Igrishin
Дата:
Сообщение: libpq (PQprepared)
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Column-level triggers in docs