From: Etsuro Fujita Date: Tue, 11 Jun 2019 04:39:31 +0000 (+0900) Subject: postgres_fdw: Reorder C includes. X-Git-Tag: REL_12_BETA2~41 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=92a88644d2b7208e98d9e913c3a574c5c2fe7b78;p=postgresql 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 --- diff --git a/contrib/postgres_fdw/connection.c b/contrib/postgres_fdw/connection.c index 5dfdadcc2f..57ed5f4b90 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" diff --git a/contrib/postgres_fdw/postgres_fdw.c b/contrib/postgres_fdw/postgres_fdw.c index 1b09aa5a01..11451c2055 100644 --- a/contrib/postgres_fdw/postgres_fdw.c +++ b/contrib/postgres_fdw/postgres_fdw.c @@ -26,8 +26,8 @@ #include "miscadmin.h" #include "nodes/makefuncs.h" #include "nodes/nodeFuncs.h" -#include "optimizer/cost.h" #include "optimizer/clauses.h" +#include "optimizer/cost.h" #include "optimizer/optimizer.h" #include "optimizer/pathnode.h" #include "optimizer/paths.h"