From 3e7d528b4211d65568221d450a8b0187ee0b240e Mon Sep 17 00:00:00 2001 From: Amit Kapila Date: Fri, 25 Oct 2019 10:04:20 +0530 Subject: [PATCH] Revert part of commit dddf4cdc3. The commit dddf4cdc3 tries to ensure that the Postgres header file inclusions are in order based on their ASCII value. However, in one of the case there is a header file dependency due to which we can't maintain such order. Author: Amit Kapila Discussion: https://postgr.es/m/E1iNpHW-000855-1u@gemulon.postgresql.org --- src/interfaces/ecpg/pgtypeslib/dt_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/ecpg/pgtypeslib/dt_common.c b/src/interfaces/ecpg/pgtypeslib/dt_common.c index c22f657..29c1117 100644 --- a/src/interfaces/ecpg/pgtypeslib/dt_common.c +++ b/src/interfaces/ecpg/pgtypeslib/dt_common.c @@ -7,9 +7,9 @@ #include #include "common/string.h" +#include "pgtypeslib_extern.h" #include "dt.h" #include "pgtypes_timestamp.h" -#include "pgtypeslib_extern.h" const int day_tab[2][13] = { {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, 0}, -- 1.8.3.1