From: Magnus Hagander Date: Thu, 5 Apr 2018 17:14:14 +0000 (+0200) Subject: Fix worker_spi for new parameter to initialize connection X-Git-Tag: REL_11_BETA1~348 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6a5f796b48b0e9808fef9731da8aea17f56de999;p=postgresql Fix worker_spi for new parameter to initialize connection Missed in previous commit. Spotted by Teodor and the buildfarm --- diff --git a/src/test/modules/worker_spi/worker_spi.c b/src/test/modules/worker_spi/worker_spi.c index 3b98b1682b..0d705a3f2e 100644 --- a/src/test/modules/worker_spi/worker_spi.c +++ b/src/test/modules/worker_spi/worker_spi.c @@ -179,7 +179,7 @@ worker_spi_main(Datum main_arg) BackgroundWorkerUnblockSignals(); /* Connect to our database */ - BackgroundWorkerInitializeConnection("postgres", NULL); + BackgroundWorkerInitializeConnection("postgres", NULL, 0); elog(LOG, "%s initialized with %s.%s", MyBgworkerEntry->bgw_name, table->schema, table->name);