summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian2011-08-13 01:32:19 +0000
committerBruce Momjian2011-08-13 01:32:19 +0000
commit6d7bd5dec9e073018d9c2bea51d8e271cf5a5af6 (patch)
tree62c387a3d65c11dd3ade93850f956bc30d9ffb62
parenteb72adc82e933f135369d846c2151c7694ffaa36 (diff)
Make USECS_PER_* timestamp macros visible even when we are not using
integer timestamps.
-rw-r--r--src/include/utils/timestamp.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/include/utils/timestamp.h b/src/include/utils/timestamp.h
index 9e51b58dde..ca7a6e73c2 100644
--- a/src/include/utils/timestamp.h
+++ b/src/include/utils/timestamp.h
@@ -93,12 +93,10 @@ typedef struct
#define SECS_PER_MINUTE 60
#define MINS_PER_HOUR 60
-#ifdef HAVE_INT64_TIMESTAMP
#define USECS_PER_DAY INT64CONST(86400000000)
#define USECS_PER_HOUR INT64CONST(3600000000)
#define USECS_PER_MINUTE INT64CONST(60000000)
#define USECS_PER_SEC INT64CONST(1000000)
-#endif
/*
* Macros for fmgr-callable functions.