Fix rounding problem in interval_div by using rint(), and improve
interval_mul function.
This commit is contained in:
parent
c17abc1c54
commit
8b60f8e6c9
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/utils/adt/timestamp.c,v 1.145 2005/07/23 14:53:21 momjian Exp $
|
* $PostgreSQL: pgsql/src/backend/utils/adt/timestamp.c,v 1.146 2005/07/24 04:37:07 momjian Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -2244,38 +2244,37 @@ interval_mi(PG_FUNCTION_ARGS)
|
|||||||
Datum
|
Datum
|
||||||
interval_mul(PG_FUNCTION_ARGS)
|
interval_mul(PG_FUNCTION_ARGS)
|
||||||
{
|
{
|
||||||
Interval *span1 = PG_GETARG_INTERVAL_P(0);
|
Interval *span = PG_GETARG_INTERVAL_P(0);
|
||||||
float8 factor = PG_GETARG_FLOAT8(1);
|
float8 factor = PG_GETARG_FLOAT8(1);
|
||||||
|
double month_remainder, day_remainder;
|
||||||
Interval *result;
|
Interval *result;
|
||||||
|
|
||||||
#ifdef HAVE_INT64_TIMESTAMP
|
|
||||||
int64 months;
|
|
||||||
int64 days;
|
|
||||||
#else
|
|
||||||
double months;
|
|
||||||
double days;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
result = (Interval *) palloc(sizeof(Interval));
|
result = (Interval *) palloc(sizeof(Interval));
|
||||||
|
|
||||||
months = span1->month * factor;
|
result->month = span->month * factor;
|
||||||
days = span1->day * factor;
|
result->day = span->day * factor;
|
||||||
|
|
||||||
|
/* Compute remainders */
|
||||||
|
month_remainder = span->month * factor - result->month;
|
||||||
|
day_remainder = span->day * factor - result->day;
|
||||||
|
|
||||||
|
/* Cascade fractions to lower units */
|
||||||
|
/* fractional months full days into days */
|
||||||
|
result->day += month_remainder * DAYS_PER_MONTH;
|
||||||
|
/* fractional months partial days into time */
|
||||||
|
day_remainder += (month_remainder * DAYS_PER_MONTH) -
|
||||||
|
(int)(month_remainder * DAYS_PER_MONTH);
|
||||||
|
|
||||||
#ifdef HAVE_INT64_TIMESTAMP
|
#ifdef HAVE_INT64_TIMESTAMP
|
||||||
result->month = months;
|
result->time = rint(span->time * factor +
|
||||||
result->day = days;
|
day_remainder * USECS_PER_DAY);
|
||||||
result->time = span1->time * factor;
|
|
||||||
result->time += (months - result->month) * INT64CONST(30) * USECS_PER_DAY;
|
|
||||||
result->time += (days - result->day) * INT64CONST(24) * USECS_PER_HOUR;
|
|
||||||
#else
|
#else
|
||||||
result->month = (int)months;
|
result->time = JROUND(span->time * factor +
|
||||||
result->day = (int)days;
|
day_remainder * SECS_PER_DAY);
|
||||||
result->time = JROUND(span1->time * factor);
|
|
||||||
/* evaluate fractional months as 30 days */
|
|
||||||
result->time += JROUND((months - result->month) * DAYS_PER_MONTH * SECS_PER_DAY);
|
|
||||||
/* evaluate fractional days as 24 hours */
|
|
||||||
result->time += JROUND((days - result->day) * HOURS_PER_DAY * SECS_PER_HOUR);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
result = DatumGetIntervalP(DirectFunctionCall1(interval_justify_hours,
|
||||||
|
IntervalPGetDatum(result)));
|
||||||
PG_RETURN_INTERVAL_P(result);
|
PG_RETURN_INTERVAL_P(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2284,9 +2283,9 @@ mul_d_interval(PG_FUNCTION_ARGS)
|
|||||||
{
|
{
|
||||||
/* Args are float8 and Interval *, but leave them as generic Datum */
|
/* Args are float8 and Interval *, but leave them as generic Datum */
|
||||||
Datum factor = PG_GETARG_DATUM(0);
|
Datum factor = PG_GETARG_DATUM(0);
|
||||||
Datum span1 = PG_GETARG_DATUM(1);
|
Datum span = PG_GETARG_DATUM(1);
|
||||||
|
|
||||||
return DirectFunctionCall2(interval_mul, span1, factor);
|
return DirectFunctionCall2(interval_mul, span, factor);
|
||||||
}
|
}
|
||||||
|
|
||||||
Datum
|
Datum
|
||||||
@ -2316,10 +2315,11 @@ interval_div(PG_FUNCTION_ARGS)
|
|||||||
/* fractional months full days into days */
|
/* fractional months full days into days */
|
||||||
result->day += month_remainder * DAYS_PER_MONTH;
|
result->day += month_remainder * DAYS_PER_MONTH;
|
||||||
/* fractional months partial days into time */
|
/* fractional months partial days into time */
|
||||||
day_remainder += (month_remainder * DAYS_PER_MONTH) - (int)(month_remainder * DAYS_PER_MONTH);
|
day_remainder += (month_remainder * DAYS_PER_MONTH) -
|
||||||
|
(int)(month_remainder * DAYS_PER_MONTH);
|
||||||
|
|
||||||
#ifdef HAVE_INT64_TIMESTAMP
|
#ifdef HAVE_INT64_TIMESTAMP
|
||||||
result->time += day_remainder * USECS_PER_DAY;
|
result->time += rint(day_remainder * USECS_PER_DAY);
|
||||||
#else
|
#else
|
||||||
result->time += day_remainder * SECS_PER_DAY;
|
result->time += day_remainder * SECS_PER_DAY;
|
||||||
result->time = JROUND(result->time);
|
result->time = JROUND(result->time);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user