Fix overflow for INTERVAL 'x ms' where x is more than a couple million,
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 18 Aug 2009 21:23:58 +0000 (21:23 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 18 Aug 2009 21:23:58 +0000 (21:23 +0000)
and integer datetimes are in use.  Per bug report from Hubert Depesz
Lubaczewski.

Alex Hunsaker

src/backend/utils/adt/datetime.c

index cb57d8182fec5d349020b97d27ceee5832079ee2..5e929b0f175d73d885933913077069fe8ff01b27 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.118.2.12 2009/05/01 19:29:42 tgl Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/utils/adt/datetime.c,v 1.118.2.13 2009/08/18 21:23:58 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -3093,6 +3093,9 @@ DecodeInterval(char **field, int *ftype, int nf, int *dtype, struct tm * tm, fse
                                                break;
 
                                        case DTK_MILLISEC:
+                                               /* avoid overflowing the fsec field */
+                                               tm->tm_sec += val / 1000;
+                                               val -= (val / 1000) * 1000;
 #ifdef HAVE_INT64_TIMESTAMP
                                                *fsec += ((val + fval) * 1000);
 #else