mirror of
https://github.com/postgres/postgres.git
synced 2025-06-14 18:42:34 +03:00
Suppress compile warnings on machines where the INT64CONST() decoration
is actually needed. Per Oliver Elphick.
This commit is contained in:
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/utils/adt/date.c,v 1.97 2004/05/21 05:08:01 tgl Exp $
|
* $PostgreSQL: pgsql/src/backend/utils/adt/date.c,v 1.98 2004/05/31 18:53:17 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -1461,7 +1461,7 @@ interval_time(PG_FUNCTION_ARGS)
|
|||||||
}
|
}
|
||||||
else if (result < 0)
|
else if (result < 0)
|
||||||
{
|
{
|
||||||
days = (-result + INT64CONST(86400000000 - 1)) / INT64CONST(86400000000);
|
days = (-result + INT64CONST(86400000000) - 1) / INT64CONST(86400000000);
|
||||||
result += days * INT64CONST(86400000000);
|
result += days * INT64CONST(86400000000);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/utils/adt/datetime.c,v 1.128 2004/05/21 05:08:01 tgl Exp $
|
* $PostgreSQL: pgsql/src/backend/utils/adt/datetime.c,v 1.129 2004/05/31 18:53:17 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -1209,7 +1209,7 @@ DecodeDateTime(char **field, int *ftype, int nf,
|
|||||||
|
|
||||||
tmask |= DTK_TIME_M;
|
tmask |= DTK_TIME_M;
|
||||||
#ifdef HAVE_INT64_TIMESTAMP
|
#ifdef HAVE_INT64_TIMESTAMP
|
||||||
dt2time((time * 86400000000),
|
dt2time((time * INT64CONST(86400000000)),
|
||||||
&tm->tm_hour, &tm->tm_min, &tm->tm_sec, fsec);
|
&tm->tm_hour, &tm->tm_min, &tm->tm_sec, fsec);
|
||||||
#else
|
#else
|
||||||
dt2time((time * 86400),
|
dt2time((time * 86400),
|
||||||
@ -1960,7 +1960,7 @@ DecodeTimeOnly(char **field, int *ftype, int nf,
|
|||||||
|
|
||||||
tmask |= DTK_TIME_M;
|
tmask |= DTK_TIME_M;
|
||||||
#ifdef HAVE_INT64_TIMESTAMP
|
#ifdef HAVE_INT64_TIMESTAMP
|
||||||
dt2time((time * 86400000000),
|
dt2time((time * INT64CONST(86400000000)),
|
||||||
&tm->tm_hour, &tm->tm_min, &tm->tm_sec, fsec);
|
&tm->tm_hour, &tm->tm_min, &tm->tm_sec, fsec);
|
||||||
#else
|
#else
|
||||||
dt2time((time * 86400),
|
dt2time((time * 86400),
|
||||||
|
@ -2255,7 +2255,7 @@ DecodeDateTime(char **field, int *ftype, int nf,
|
|||||||
|
|
||||||
tmask |= DTK_TIME_M;
|
tmask |= DTK_TIME_M;
|
||||||
#ifdef HAVE_INT64_TIMESTAMP
|
#ifdef HAVE_INT64_TIMESTAMP
|
||||||
dt2time((time * 86400000000), &tm->tm_hour, &tm->tm_min, &tm->tm_sec, fsec);
|
dt2time((time * INT64CONST(86400000000)), &tm->tm_hour, &tm->tm_min, &tm->tm_sec, fsec);
|
||||||
#else
|
#else
|
||||||
dt2time((time * 86400), &tm->tm_hour, &tm->tm_min, &tm->tm_sec, fsec);
|
dt2time((time * 86400), &tm->tm_hour, &tm->tm_min, &tm->tm_sec, fsec);
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user