File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -57,8 +57,8 @@ extern PGDLLEXPORT void bgw_main_concurrent_part(Datum main_arg);
5757
5858static void handle_sigterm (SIGNAL_ARGS );
5959static void bg_worker_load_config (const char * bgw_name );
60- static bool start_bgworker (const char bgworker_name [ BGW_MAXLEN ] ,
61- const char bgworker_proc [ BGW_MAXLEN ] ,
60+ static bool start_bgworker (const char * bgworker_name ,
61+ const char * bgworker_proc ,
6262 Datum bgw_arg , bool wait_for_shutdown );
6363
6464
@@ -166,8 +166,8 @@ bg_worker_load_config(const char *bgw_name)
166166 * Common function to start background worker.
167167 */
168168static bool
169- start_bgworker (const char bgworker_name [ BGW_MAXLEN ] ,
170- const char bgworker_proc [ BGW_MAXLEN ] ,
169+ start_bgworker (const char * bgworker_name ,
170+ const char * bgworker_proc ,
171171 Datum bgw_arg , bool wait_for_shutdown )
172172{
173173#define HandleError (condition , new_state ) \
You can’t perform that action at this time.
0 commit comments