mirror of
https://github.com/postgres/postgres.git
synced 2026-04-09 11:06:21 -04:00
Fix improper display of fractional seconds in interval values
when using --enable-integer-datetimes and a non-ISO datestyle. Ron Mayer
This commit is contained in:
parent
38c8ab246b
commit
aaa0d6b858
1 changed files with 2 additions and 2 deletions
|
|
@ -8,7 +8,7 @@
|
|||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/utils/adt/datetime.c,v 1.160.2.6 2008/06/09 19:34:24 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/utils/adt/datetime.c,v 1.160.2.7 2008/10/02 13:47:56 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
|
@ -3995,7 +3995,7 @@ EncodeInterval(struct pg_tm * tm, fsec_t fsec, int style, char *str)
|
|||
is_before = TRUE;
|
||||
}
|
||||
sprintf(cp, "%s%d.%02d secs", is_nonzero ? " " : "",
|
||||
tm->tm_sec, ((int) sec) / 10000);
|
||||
tm->tm_sec, abs((int) rint(sec / 10000.0)));
|
||||
cp += strlen(cp);
|
||||
#else
|
||||
fsec += tm->tm_sec;
|
||||
|
|
|
|||
Loading…
Reference in a new issue