From: Robert Haas Date: Thu, 22 Mar 2012 19:40:27 +0000 (-0400) Subject: Update docs on numeric storage requirements. X-Git-Tag: REL9_2_BETA1~240 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e83f827f5abeeca4750b40bd6d8701d91fead8dd;p=postgresql Update docs on numeric storage requirements. Since 9.1, the minimum overhead is three bytes, not five. Fujii Masao --- diff --git a/doc/src/sgml/datatype.sgml b/doc/src/sgml/datatype.sgml index 58e46b5870..91dc35dc9d 100644 --- a/doc/src/sgml/datatype.sgml +++ b/doc/src/sgml/datatype.sgml @@ -568,7 +568,7 @@ NUMERIC type is more akin to varchar(n) than to char(n).) The actual storage requirement is two bytes for each group of four decimal digits, - plus five to eight bytes overhead. + plus three to eight bytes overhead.