File tree 3 files changed +7
-1
lines changed
3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -4450,7 +4450,10 @@ _copyAlterSubscriptionStmt(const AlterSubscriptionStmt *from)
4450
4450
{
4451
4451
AlterSubscriptionStmt * newnode = makeNode (AlterSubscriptionStmt );
4452
4452
4453
+ COPY_SCALAR_FIELD (kind );
4453
4454
COPY_STRING_FIELD (subname );
4455
+ COPY_STRING_FIELD (conninfo );
4456
+ COPY_NODE_FIELD (publication );
4454
4457
COPY_NODE_FIELD (options );
4455
4458
4456
4459
return newnode ;
Original file line number Diff line number Diff line change @@ -2199,7 +2199,10 @@ static bool
2199
2199
_equalAlterSubscriptionStmt (const AlterSubscriptionStmt * a ,
2200
2200
const AlterSubscriptionStmt * b )
2201
2201
{
2202
+ COMPARE_SCALAR_FIELD (kind );
2202
2203
COMPARE_STRING_FIELD (subname );
2204
+ COMPARE_STRING_FIELD (conninfo );
2205
+ COMPARE_NODE_FIELD (publication );
2203
2206
COMPARE_NODE_FIELD (options );
2204
2207
2205
2208
return true;
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ typedef struct LogicalRepWorker
46
46
} LogicalRepWorker ;
47
47
48
48
/* Memory context for cached variables in apply worker. */
49
- MemoryContext ApplyCacheContext ;
49
+ extern MemoryContext ApplyCacheContext ;
50
50
51
51
/* libpqreceiver connection */
52
52
extern struct WalReceiverConn * wrconn ;
You can’t perform that action at this time.
0 commit comments