We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47288bd commit e3e065dCopy full SHA for e3e065d
src/backend/nodes/copyfuncs.c
@@ -3581,7 +3581,7 @@ _copyCreateEventTrigStmt(const CreateEventTrigStmt *from)
3581
CreateEventTrigStmt *newnode = makeNode(CreateEventTrigStmt);
3582
3583
COPY_STRING_FIELD(trigname);
3584
- COPY_SCALAR_FIELD(eventname);
+ COPY_STRING_FIELD(eventname);
3585
COPY_NODE_FIELD(whenclause);
3586
COPY_NODE_FIELD(funcname);
3587
src/backend/nodes/equalfuncs.c
@@ -1790,7 +1790,7 @@ static bool
1790
_equalCreateEventTrigStmt(const CreateEventTrigStmt *a, const CreateEventTrigStmt *b)
1791
{
1792
COMPARE_STRING_FIELD(trigname);
1793
- COMPARE_SCALAR_FIELD(eventname);
+ COMPARE_STRING_FIELD(eventname);
1794
COMPARE_NODE_FIELD(funcname);
1795
COMPARE_NODE_FIELD(whenclause);
1796
0 commit comments