Skip to content

Commit

Permalink
Fix bgw_type
Browse files Browse the repository at this point in the history
  • Loading branch information
jfinzel committed Nov 14, 2018
1 parent a0490e7 commit f5a2f4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pg_fact_loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ pg_fact_loader_worker(PG_FUNCTION_ARGS)
sprintf(worker.bgw_function_name, "pg_fact_loader_main");
snprintf(worker.bgw_name, BGW_MAXLEN, "pg_fact_loader worker");
#if PG_VERSION_NUM >= 110000
snprintf(worker.bgw_type, BGW_MAXLEN, "pglogical_ticker");
snprintf(worker.bgw_type, BGW_MAXLEN, "pg_fact_loader");
#endif
worker.bgw_main_arg = ObjectIdGetDatum(db_oid);
/* set bgw_notify_pid so that we can use WaitForBackgroundWorkerStartup */
Expand Down

0 comments on commit f5a2f4f

Please sign in to comment.