diff options
author | Etsuro Fujita <efujita@postgresql.org> | 2019-06-11 13:39:31 +0900 |
---|---|---|
committer | Etsuro Fujita <efujita@postgresql.org> | 2019-06-11 13:39:31 +0900 |
commit | 92a88644d2b7208e98d9e913c3a574c5c2fe7b78 (patch) | |
tree | c5b4ac31a616da98963721bfc6a1319ccbdff079 /contrib/postgres_fdw/connection.c | |
parent | 727e45c8a457ab7378494ff33bf3b50607d303a8 (diff) | |
download | postgresql-92a88644d2b7208e98d9e913c3a574c5c2fe7b78.tar.gz postgresql-92a88644d2b7208e98d9e913c3a574c5c2fe7b78.zip |
postgres_fdw: Reorder C includes.
Reorder header files in postgres_fdw.c and connection.c in alphabetical
order.
Author: Etsuro Fujita
Reviewed-by: Alvaro Herrera
Discussion: https://postgr.es/m/CAPmGK17ZmNb-EELqu8LmMh2t2uFdbfWNVDEfDO5-bpejHPONMQ@mail.gmail.com
Diffstat (limited to 'contrib/postgres_fdw/connection.c')
-rw-r--r-- | contrib/postgres_fdw/connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/postgres_fdw/connection.c b/contrib/postgres_fdw/connection.c index 5dfdadcc2fc..57ed5f4b905 100644 --- a/contrib/postgres_fdw/connection.c +++ b/contrib/postgres_fdw/connection.c @@ -15,8 +15,8 @@ #include "postgres_fdw.h" #include "access/htup_details.h" -#include "catalog/pg_user_mapping.h" #include "access/xact.h" +#include "catalog/pg_user_mapping.h" #include "mb/pg_wchar.h" #include "miscadmin.h" #include "pgstat.h" |