struct Trigger definition in trigger.sgml
Hi,
While working on something else, I noticed that commit 487e9861d added
a new field to struct Trigger, but failed to update $SUBJECT to match.
Attached is a small patch for that.
Best regards,
Etsuro Fujita
Attachments:
doc-trigger-def.patchapplication/octet-stream; name=doc-trigger-def.patchDownload
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;
On Thu, Sep 1, 2022 at 2:18 PM Etsuro Fujita <etsuro.fujita@gmail.com>
wrote:
While working on something else, I noticed that commit 487e9861d added
a new field to struct Trigger, but failed to update $SUBJECT to match.
Attached is a small patch for that.
+1. Good catch.
Thanks
Richard
Hi Richard,
On Thu, Sep 1, 2022 at 4:29 PM Richard Guo <guofenglinux@gmail.com> wrote:
On Thu, Sep 1, 2022 at 2:18 PM Etsuro Fujita <etsuro.fujita@gmail.com> wrote:
While working on something else, I noticed that commit 487e9861d added
a new field to struct Trigger, but failed to update $SUBJECT to match.
Attached is a small patch for that.
+1. Good catch.
Pushed.
Thanks for reviewing!
Best regards,
Etsuro Fujita