aboutsummaryrefslogtreecommitdiff
path: root/src/bin/scripts/scripts_parallel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/scripts/scripts_parallel.h')
-rw-r--r--src/bin/scripts/scripts_parallel.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/bin/scripts/scripts_parallel.h b/src/bin/scripts/scripts_parallel.h
deleted file mode 100644
index f62692510a8..00000000000
--- a/src/bin/scripts/scripts_parallel.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*-------------------------------------------------------------------------
- *
- * scripts_parallel.h
- * Parallel support for bin/scripts/
- *
- * Copyright (c) 2003-2021, PostgreSQL Global Development Group
- *
- * src/bin/scripts/scripts_parallel.h
- *
- *-------------------------------------------------------------------------
- */
-#ifndef SCRIPTS_PARALLEL_H
-#define SCRIPTS_PARALLEL_H
-
-#include "common.h"
-#include "libpq-fe.h"
-
-
-typedef struct ParallelSlot
-{
- PGconn *connection; /* One connection */
- bool isFree; /* Is it known to be idle? */
-} ParallelSlot;
-
-extern ParallelSlot *ParallelSlotsGetIdle(ParallelSlot *slots, int numslots);
-
-extern ParallelSlot *ParallelSlotsSetup(const ConnParams *cparams,
- const char *progname, bool echo,
- PGconn *conn, int numslots);
-
-extern void ParallelSlotsTerminate(ParallelSlot *slots, int numslots);
-
-extern bool ParallelSlotsWaitCompletion(ParallelSlot *slots, int numslots);
-
-
-#endif /* SCRIPTS_PARALLEL_H */