diff --git a/doc/src/sgml/datatype.sgml b/doc/src/sgml/datatype.sgml index 44d85d81af..ac178be536 100644 --- a/doc/src/sgml/datatype.sgml +++ b/doc/src/sgml/datatype.sgml @@ -1130,6 +1130,14 @@ SELECT '52093.89'::money::numeric::float8; regular expressions. + + The characters that can be stored in any of these data types are + determined by the database character set, which is selected when + the database is created. Regardless of the specific character set, + the character with code zero (sometimes called NUL) cannot be stored. + For more information refer to . + + The storage requirement for a short string (up to 126 bytes) is 1 byte plus the actual string, which includes the space padding in the case of @@ -1167,10 +1175,7 @@ SELECT '52093.89'::money::numeric::float8; Refer to for information about the syntax of string literals, and to - for information about available operators and functions. The - database character set determines the character set used to store - textual values; for more information on character set support, - refer to . + for information about available operators and functions.