diff options
author | Etsuro Fujita <efujita@postgresql.org> | 2022-09-02 16:45:04 +0900 |
---|---|---|
committer | Etsuro Fujita <efujita@postgresql.org> | 2022-09-02 16:45:04 +0900 |
commit | d7bc6ea052ea96b1f9122947efe340b972252fe5 (patch) | |
tree | 8aa6163c79cbeb0a35b1d062ad505aa513308578 | |
parent | 210bece161b0e56e92aa4220180fb568c3f574ff (diff) | |
download | postgresql-d7bc6ea052ea96b1f9122947efe340b972252fe5.tar.gz postgresql-d7bc6ea052ea96b1f9122947efe340b972252fe5.zip |
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
-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 4a0e74652f7..1e83d708588 100644 --- a/doc/src/sgml/trigger.sgml +++ b/doc/src/sgml/trigger.sgml @@ -690,6 +690,7 @@ typedef struct Trigger int16 tgtype; char tgenabled; bool tgisinternal; + bool tgisclone; Oid tgconstrrelid; Oid tgconstrindid; Oid tgconstraint; |