36.3 Writing Tigger Functions in C

From: Dmitry Igrishin <dmitigr(at)gmail(dot)com>
To: pgsql-docs <pgsql-docs(at)postgresql(dot)org>
Subject: 36.3 Writing Tigger Functions in C
Date: 2015-08-11 10:47:22
Message-ID: CAAfz9KPBchVLG=MxOcD7wWiRjBQJ2CDckqC3RRYrkehy=9wedw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs

Subparagparh 3:
I suggest to replace:
"but it is passed a "context" pointer pointing to a TriggerData
structure"
with
"but it is passed a "context" pointer to a structure of type
TriggerData"

tg_trigtuple:
I'm not sure why "skip the operation" is here:
"if you don't want to replace the row with a different one (in the
case of INSERT) or skip the operation"

tg_newtuple:
I'm not sure why "skip the operation" is here:
"and you don't want to replace this row by a different one or
skip the operation"

and I suggest to replace:
"and you don't want to replace this row by a different one"
with
"and you don't want to replace the row with a different one"
anyway.

--
// Dmitry.

Responses

Browse pgsql-docs by date

  From Date Subject
Next Message Dmitry Igrishin 2015-08-11 10:51:28 "SQL null" vs "SQL NULL".
Previous Message Dmitry Igrishin 2015-08-11 10:18:22 36.2 Visibility of Data Changes