diff options
author | Noah Misch <noah@leadboat.com> | 2020-08-10 09:22:54 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2020-08-10 09:22:54 -0700 |
commit | e078fb5d4eeb23d0d09932e0b183a8e7bdfb17b4 (patch) | |
tree | 51454894fdc9332cb87e10ff24cf6c4ed713ba7a /src/tools/findoidjoins | |
parent | 7eeb1d9861b0a3f453f8b31c7648396cdd7f1e59 (diff) | |
download | postgresql-e078fb5d4eeb23d0d09932e0b183a8e7bdfb17b4.tar.gz postgresql-e078fb5d4eeb23d0d09932e0b183a8e7bdfb17b4.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/tools/findoidjoins')
-rw-r--r-- | src/tools/findoidjoins/findoidjoins.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/findoidjoins/findoidjoins.c b/src/tools/findoidjoins/findoidjoins.c index 5239332ea7e..3d9ca262357 100644 --- a/src/tools/findoidjoins/findoidjoins.c +++ b/src/tools/findoidjoins/findoidjoins.c @@ -10,7 +10,7 @@ #include "access/transam.h" #include "catalog/pg_class_d.h" -#include "fe_utils/connect.h" +#include "common/connect.h" #include "libpq-fe.h" #include "pqexpbuffer.h" |