File tree 1 file changed +4
-4
lines changed 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);
57
57
58
58
static void handle_sigterm (SIGNAL_ARGS );
59
59
static 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 ,
62
62
Datum bgw_arg , bool wait_for_shutdown );
63
63
64
64
@@ -166,8 +166,8 @@ bg_worker_load_config(const char *bgw_name)
166
166
* Common function to start background worker.
167
167
*/
168
168
static 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 ,
171
171
Datum bgw_arg , bool wait_for_shutdown )
172
172
{
173
173
#define HandleError (condition , new_state ) \
You can’t perform that action at this time.
0 commit comments