summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2018-04-05 19:14:14 +0200
committerMagnus Hagander <magnus@hagander.net>2018-04-05 19:14:50 +0200
commit6a5f796b48b0e9808fef9731da8aea17f56de999 (patch)
tree81b06a14d908911cb4582de6ea12a40f373c0c2e /src
parent1a8c95365e01c37ff5f51eb803e8ce926fbb0238 (diff)
Fix worker_spi for new parameter to initialize connection
Missed in previous commit. Spotted by Teodor and the buildfarm
Diffstat (limited to 'src')
-rw-r--r--src/test/modules/worker_spi/worker_spi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/modules/worker_spi/worker_spi.c b/src/test/modules/worker_spi/worker_spi.c
index 3b98b1682b2..0d705a3f2ed 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);