Package: postgresql-16-toastinfo Source: toastinfo Version: 1.7-1.pgdg22.04+1 Architecture: amd64 Maintainer: Debian PostgreSQL Maintainers Installed-Size: 46 Depends: postgresql-16 Breaks: postgresql-16-jit-llvm (<< 15) Homepage: https://github.com/df7cb/toastinfo Priority: optional Section: database Filename: pool/main/t/toastinfo/postgresql-16-toastinfo_1.7-1.pgdg22.04+1_amd64.deb Size: 13524 SHA512: a1cbe8fd86a9be9be77c23d24fb73191d835a0b18f639245dec8ded9e74692767cbe570f4cdf8df9efa24e3319524a85cee7e4eb746ff5cbb67cb01840656076 SHA256: 51d15afc97df26c59dd38e848ff19ea4f4745aaa7d06e9fdb0afc13aa95ba095 SHA1: d439adb9f40a608a5894812bf8d70604c460d7c7 MD5sum: 7627d219f239aaac9b15cdc2a2ab709c Description: Show storage structure of varlena datatypes in PostgreSQL This PostgreSQL extension exposes the internal storage structure of variable-length datatypes, called varlena. . The function pg_toastinfo describes the storage form of a datum: . * null for NULLs * ordinary for non-varlena datatypes * short inline varlena for varlena values up to 126 bytes (1 byte header) * long inline varlena, (un)compressed for varlena values up to 1GiB (4 bytes header) * toasted varlena, (un)compressed for varlena values up to 1GiB stored in TOAST tables . The function pg_toastpointer returns a varlena's chunk_id oid in the corresponding TOAST table. It returns NULL on non-varlena input.