aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2022-05-12 09:25:14 -0700
committerAndres Freund <andres@anarazel.de>2022-05-12 12:39:33 -0700
commit07d683b54af854098cc559d4b8640905f9efa0ea (patch)
treec6aeb23e11822ef75c977dc94ed1c6765aec38cf
parent0699b1ae2d8e7b8763a2019d9cd651ab55521779 (diff)
downloadpostgresql-07d683b54af854098cc559d4b8640905f9efa0ea.tar.gz
postgresql-07d683b54af854098cc559d4b8640905f9efa0ea.zip
Remove function declaration for function in pg_proc.
The declaration is automatically generated. Noticed when experimenting with adding PGDLLIMPORT markers for functions. Discussion: https://postgr.es/m/20220512164513.vaheofqp2q24l65r@alap3.anarazel.de
-rw-r--r--src/backend/replication/logical/launcher.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/replication/logical/launcher.c b/src/backend/replication/logical/launcher.c
index eabcc1bcba7..bd5f78cf9a2 100644
--- a/src/backend/replication/logical/launcher.c
+++ b/src/backend/replication/logical/launcher.c
@@ -42,6 +42,7 @@
#include "storage/procarray.h"
#include "storage/procsignal.h"
#include "tcop/tcopprot.h"
+#include "utils/builtins.h"
#include "utils/memutils.h"
#include "utils/pg_lsn.h"
#include "utils/ps_status.h"
@@ -75,8 +76,6 @@ static void logicalrep_worker_cleanup(LogicalRepWorker *worker);
static bool on_commit_launcher_wakeup = false;
-Datum pg_stat_get_subscription(PG_FUNCTION_ARGS);
-
/*
* Load the list of subscriptions.