Check for NUMERIC overflow a second time after rounding
authorJan Wieck
Mon, 10 May 1999 18:17:44 +0000 (18:17 +0000)
committerJan Wieck
Mon, 10 May 1999 18:17:44 +0000 (18:17 +0000)
Jan

src/backend/utils/adt/numeric.c

index e00e2186847993af80cb5f4ec27b4747c2184e95..b1a86986ac08e28e174b1696e6ba8c13387260a7 100644 (file)
@@ -5,7 +5,7 @@
  *
  * 1998 Jan Wieck
  *
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/numeric.c,v 1.12 1999/05/04 15:50:24 thomas Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/numeric.c,v 1.13 1999/05/10 18:17:44 wieck Exp $
  *
  * ----------
  */
@@ -2399,6 +2399,19 @@ apply_typmod(NumericVar *var, int32 typmod)
        var->ndigits = MAX(0, MIN(i, var->ndigits));
    }
 
+   /* ----------
+    * Check for overflow again - rounding could have raised the
+    * weight.
+    * ----------
+    */
+   if (var->weight >= maxweight)
+   {
+       free_allvars();
+       elog(ERROR, "overflow on numeric "
+        "ABS(value) >= 10^%d for field with precision %d scale %d",
+                           var->weight, precision, scale);
+   }
+
    var->rscale = scale;
    var->dscale = scale;
 }