Re: The exact timing at which CHECK constraints are checked
От
Tom Lane
Тема
Re: The exact timing at which CHECK constraints are checked
Дата
Msg-id
26634.1323931284@sss.pgh.pa.us
Ответ на
The exact timing at which CHECK constraints are checked (Takahiro Noda)
Список
Дерево обсуждения
The exact timing at which CHECK constraints are checked Takahiro Noda <noda.takahiro.47m@st.kyoto-u.ac.jp>
Re: The exact timing at which CHECK constraints are checked Tom Lane <tgl@sss.pgh.pa.us>
Re: The exact timing at which CHECK constraints are checked Takahiro Noda <noda.takahiro.47m@st.kyoto-u.ac.jp>
Takahiro Noda writes: > I'm new to PostgreSQL and having been learning SQL. I'm uncertain > about the exact timing at which CHECK constraints are checked. They're checked at the instant that a row is inserted or updated. If you really need a deferred check, you'll need to build it yourself using an AFTER ROW trigger. regards, tom lane
В списке pgsql-novice по дате отправления