Fix timestamp range subdiff functions, when using float datetimes.

This commit is contained in:
Heikki Linnakangas 2011-11-07 17:33:31 +02:00
parent f62be400c0
commit ffc703a891
1 changed files with 2 additions and 2 deletions

View File

@ -1313,7 +1313,7 @@ tsrange_subdiff(PG_FUNCTION_ARGS)
#ifdef HAVE_INT64_TIMESTAMP
result = ((float8)(v1-v2)) / USECS_PER_SEC;
#else
result = timestamp;
result = v1 - v2;
#endif
PG_RETURN_FLOAT8(result);
@ -1329,7 +1329,7 @@ tstzrange_subdiff(PG_FUNCTION_ARGS)
#ifdef HAVE_INT64_TIMESTAMP
result = ((float8)(v1-v2)) / USECS_PER_SEC;
#else
result = timestamp;
result = v1 - v2;
#endif
PG_RETURN_FLOAT8(result);