aboutsummaryrefslogtreecommitdiff
path: root/contrib/auto_explain/auto_explain.c
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2022-07-17 17:29:32 -0700
committerAndres Freund <andres@anarazel.de>2022-07-17 17:29:32 -0700
commitfd4bad1655391582f639527c325fc4a99680cc64 (patch)
tree5e59a7fcf0bbe666e0d64532dc2fe57a0eade6b8 /contrib/auto_explain/auto_explain.c
parentf2b73c8d75d583adcdd3562adca335d31f430ac5 (diff)
downloadpostgresql-fd4bad1655391582f639527c325fc4a99680cc64.tar.gz
postgresql-fd4bad1655391582f639527c325fc4a99680cc64.zip
Remove now superfluous declarations of dlsym()ed symbols.
The prior commit declared them centrally. Author: Andres Freund <andres@anarazel.de> Reviewed-By: Tom Lane <tgl@sss.pgh.pa.us> Discussion: https://postgr.es/m/20211101020311.av6hphdl6xbjbuif@alap3.anarazel.de
Diffstat (limited to 'contrib/auto_explain/auto_explain.c')
-rw-r--r--contrib/auto_explain/auto_explain.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/contrib/auto_explain/auto_explain.c b/contrib/auto_explain/auto_explain.c
index 1ba7536879d..269a0fa86c5 100644
--- a/contrib/auto_explain/auto_explain.c
+++ b/contrib/auto_explain/auto_explain.c
@@ -78,8 +78,6 @@ static ExecutorRun_hook_type prev_ExecutorRun = NULL;
static ExecutorFinish_hook_type prev_ExecutorFinish = NULL;
static ExecutorEnd_hook_type prev_ExecutorEnd = NULL;
-void _PG_init(void);
-
static void explain_ExecutorStart(QueryDesc *queryDesc, int eflags);
static void explain_ExecutorRun(QueryDesc *queryDesc,
ScanDirection direction,