aboutsummaryrefslogtreecommitdiff
path: root/src/fe_utils
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2020-08-10 09:22:54 -0700
committerNoah Misch <noah@leadboat.com>2020-08-10 09:22:58 -0700
commit41dae35532d40041297ee728eac1f4584af05570 (patch)
tree22ffd65f9af8263ea4fc08776222904daae1c8aa /src/fe_utils
parent98ca64899cec6a4bf3099481aff43b8777319c41 (diff)
downloadpostgresql-41dae35532d40041297ee728eac1f4584af05570.tar.gz
postgresql-41dae35532d40041297ee728eac1f4584af05570.zip
Move connect.h from fe_utils to src/include/common.
Any libpq client can use the header. Clients include backend components postgres_fdw, dblink, and logical replication apply worker. Back-patch to v10, because another fix needs this. In released branches, just copy the header and keep the original.
Diffstat (limited to 'src/fe_utils')
-rw-r--r--src/fe_utils/cancel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe_utils/cancel.c b/src/fe_utils/cancel.c
index 51fb67d384a..70042017481 100644
--- a/src/fe_utils/cancel.c
+++ b/src/fe_utils/cancel.c
@@ -18,8 +18,8 @@
#include <unistd.h>
+#include "common/connect.h"
#include "fe_utils/cancel.h"
-#include "fe_utils/connect.h"
#include "fe_utils/string_utils.h"