diff options
author | Etsuro Fujita <efujita@postgresql.org> | 2022-09-02 16:45:01 +0900 |
---|---|---|
committer | Etsuro Fujita <efujita@postgresql.org> | 2022-09-02 16:45:01 +0900 |
commit | ea4a066e5f15f0c8b721845dc7ecbe3b206e1991 (patch) | |
tree | c4de21b7a65c1fcf62db2d697b3c6ae1ada376ee | |
parent | 96ef3237bf741c12390003e90a4d7115c0c854b7 (diff) | |
download | postgresql-ea4a066e5f15f0c8b721845dc7ecbe3b206e1991.tar.gz postgresql-ea4a066e5f15f0c8b721845dc7ecbe3b206e1991.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 04e702a7956..6e1f370b213 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; |