@@ -235,8 +235,7 @@ static void maybe_reread_subscription(void);
235
235
/* prototype needed because of stream_commit */
236
236
static void apply_dispatch (StringInfo s );
237
237
238
- static void apply_handle_commit_internal (StringInfo s ,
239
- LogicalRepCommitData * commit_data );
238
+ static void apply_handle_commit_internal (LogicalRepCommitData * commit_data );
240
239
static void apply_handle_insert_internal (ApplyExecutionData * edata ,
241
240
ResultRelInfo * relinfo ,
242
241
TupleTableSlot * remoteslot );
@@ -775,7 +774,7 @@ apply_handle_commit(StringInfo s)
775
774
LSN_FORMAT_ARGS (commit_data .commit_lsn ),
776
775
LSN_FORMAT_ARGS (remote_final_lsn ))));
777
776
778
- apply_handle_commit_internal (s , & commit_data );
777
+ apply_handle_commit_internal (& commit_data );
779
778
780
779
/* Process any tables that are being synchronized in parallel. */
781
780
process_syncing_tables (commit_data .end_lsn );
@@ -1133,7 +1132,7 @@ apply_handle_stream_commit(StringInfo s)
1133
1132
elog (DEBUG1 , "replayed %d (all) changes from file \"%s\"" ,
1134
1133
nchanges , path );
1135
1134
1136
- apply_handle_commit_internal (s , & commit_data );
1135
+ apply_handle_commit_internal (& commit_data );
1137
1136
1138
1137
/* unlink the files with serialized changes and subxact info */
1139
1138
stream_cleanup_files (MyLogicalRepWorker -> subid , xid );
@@ -1148,7 +1147,7 @@ apply_handle_stream_commit(StringInfo s)
1148
1147
* Helper function for apply_handle_commit and apply_handle_stream_commit.
1149
1148
*/
1150
1149
static void
1151
- apply_handle_commit_internal (StringInfo s , LogicalRepCommitData * commit_data )
1150
+ apply_handle_commit_internal (LogicalRepCommitData * commit_data )
1152
1151
{
1153
1152
if (IsTransactionState ())
1154
1153
{
0 commit comments