diff options
author | Etsuro Fujita <efujita@postgresql.org> | 2022-09-02 16:45:00 +0900 |
---|---|---|
committer | Etsuro Fujita <efujita@postgresql.org> | 2022-09-02 16:45:00 +0900 |
commit | 11e5f99d39ef58ce34c41f4163c1a3df2c639069 (patch) | |
tree | 4ccfc5e86d8781e8c04fdd0b5fb678bbe4c68f03 /doc/src | |
parent | 0a8de93a48ce1e7479fb75fe10a8859559ec0c09 (diff) | |
download | postgresql-11e5f99d39ef58ce34c41f4163c1a3df2c639069.tar.gz |
Doc: Update struct Trigger definition.
Commit 487e9861d added a new field to struct Trigger, but failed to
update the documentation to match; backpatch to v13 where that came in.
Reviewed by Richard Guo.
Discussion: https://postgr.es/m/CAPmGK17NY92CyxJ%2BBG7A3JZurmng4jfRfzPiBTtNupGMF0xW1g%40mail.gmail.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/trigger.sgml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/src/sgml/trigger.sgml b/doc/src/sgml/trigger.sgml index 04e702a795..6e1f370b21 100644 --- a/doc/src/sgml/trigger.sgml +++ b/doc/src/sgml/trigger.sgml @@ -721,6 +721,7 @@ typedef struct Trigger int16 tgtype; char tgenabled; bool tgisinternal; + bool tgisclone; Oid tgconstrrelid; Oid tgconstrindid; Oid tgconstraint; |