CreateEventTrigStmt copy fix

Started by Petr Jelinekover 11 years ago3 messageshackers
Jump to latest
#1Petr Jelinek
petr@2ndquadrant.com

Hi hackers,

I was trying to create event trigger inside DO statement inside an
extension SQL script and noticed that the new event trigger has empty
evtevent field.
After some tinkering with gdb I found out that the memory context
switches sometimes clear the eventname in CreateEventTrigStmt struct.
The reason for this is that _copyCreateEventTrigStmt uses
COPY_SCALAR_FIELD on eventname instead of COPY_STRING_FIELD.

Attached patch fixes this and also the same issue in
_equalCreateEventTrigStmt.

This should be back-patched to 9.3 where event triggers were introduced.

--
Petr Jelinek http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services

Attachments:

cevttrigger-copyfix.patchtext/x-diff; name=cevttrigger-copyfix.patchDownload+2-2
#2Michael Paquier
michael@paquier.xyz
In reply to: Petr Jelinek (#1)
Re: CreateEventTrigStmt copy fix

On Fri, Sep 19, 2014 at 11:09 AM, Petr Jelinek <petr@2ndquadrant.com> wrote:

Hi hackers,

I was trying to create event trigger inside DO statement inside an extension
SQL script and noticed that the new event trigger has empty evtevent field.
After some tinkering with gdb I found out that the memory context switches
sometimes clear the eventname in CreateEventTrigStmt struct. The reason for
this is that _copyCreateEventTrigStmt uses COPY_SCALAR_FIELD on eventname
instead of COPY_STRING_FIELD.

Attached patch fixes this and also the same issue in
_equalCreateEventTrigStmt.

This should be back-patched to 9.3 where event triggers were introduced.

Nice catch! And no need to care much about outfuncs.c for this Node type.
Regards,
--
Michael

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#3Robert Haas
robertmhaas@gmail.com
In reply to: Petr Jelinek (#1)
Re: CreateEventTrigStmt copy fix

On Fri, Sep 19, 2014 at 12:09 PM, Petr Jelinek <petr@2ndquadrant.com> wrote:

I was trying to create event trigger inside DO statement inside an extension
SQL script and noticed that the new event trigger has empty evtevent field.
After some tinkering with gdb I found out that the memory context switches
sometimes clear the eventname in CreateEventTrigStmt struct. The reason for
this is that _copyCreateEventTrigStmt uses COPY_SCALAR_FIELD on eventname
instead of COPY_STRING_FIELD.

Attached patch fixes this and also the same issue in
_equalCreateEventTrigStmt.

This should be back-patched to 9.3 where event triggers were introduced.

Done, thanks.

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers