We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0926ef4 commit 763ba1bCopy full SHA for 763ba1b
src/backend/nodes/copyfuncs.c
@@ -3611,7 +3611,7 @@ _copyCreateEventTrigStmt(const CreateEventTrigStmt *from)
3611
CreateEventTrigStmt *newnode = makeNode(CreateEventTrigStmt);
3612
3613
COPY_STRING_FIELD(trigname);
3614
- COPY_SCALAR_FIELD(eventname);
+ COPY_STRING_FIELD(eventname);
3615
COPY_NODE_FIELD(whenclause);
3616
COPY_NODE_FIELD(funcname);
3617
src/backend/nodes/equalfuncs.c
@@ -1806,7 +1806,7 @@ static bool
1806
_equalCreateEventTrigStmt(const CreateEventTrigStmt *a, const CreateEventTrigStmt *b)
1807
{
1808
COMPARE_STRING_FIELD(trigname);
1809
- COMPARE_SCALAR_FIELD(eventname);
+ COMPARE_STRING_FIELD(eventname);
1810
COMPARE_NODE_FIELD(funcname);
1811
COMPARE_NODE_FIELD(whenclause);
1812
0 commit comments