doc: Document overflow handling of pg_class.relpages etc. The pg_class fields relpages, relallvisible, and relallfrozen are stored as int32 in the catalog but block numbers are internally of type uint32. This all works correctly because the values are implicitly converted back and forth according to C conversion rules. But this was apparently never explicitly documented, so add this.
Reviewed-by: Chao Li <[email protected]> Discussion: https://www.postgresql.org/message-id/flat/db993f34-e3e1-4e6e-85c3-4f248d2ff29b%40eisentraut.org Branch ------ master Details ------- https://git.postgresql.org/pg/commitdiff/e63961d7c16f7df5ba4b881f4bfa7a7920c628bd Modified Files -------------- doc/src/sgml/catalogs.sgml | 12 ++++++++++++ 1 file changed, 12 insertions(+)
