diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2020-06-04 17:57:19 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2020-06-04 17:57:19 -0400 |
commit | 9a9ba4c4d84ec149596f21472cdf632ced8bcd8e (patch) | |
tree | f99b6c45630e4a487e50aab044e57511f51b7c08 | |
parent | b2c64f571db474a4094232eba604f7a6b4db124e (diff) |
Add missing #include.
Oversight in b2c64f571 (the later branches already have this).
Per buildfarm.
-rw-r--r-- | src/include/utils/date.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/utils/date.h b/src/include/utils/date.h index d1c34b2caf1..064951be3e3 100644 --- a/src/include/utils/date.h +++ b/src/include/utils/date.h @@ -17,7 +17,7 @@ #include <math.h> #include "fmgr.h" - +#include "datatype/timestamp.h" typedef int32 DateADT; |