struct Trigger definition in trigger.sgml

Started by Etsuro Fujitaover 3 years ago3 messages
#1Etsuro Fujita
etsuro.fujita@gmail.com
1 attachment(s)

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;
#2Richard Guo
guofenglinux@gmail.com
In reply to: Etsuro Fujita (#1)
Re: struct Trigger definition in trigger.sgml

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

#3Etsuro Fujita
etsuro.fujita@gmail.com
In reply to: Richard Guo (#2)
Re: struct Trigger definition in trigger.sgml

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