Package: postgresql-9.3-toastinfo Source: toastinfo Version: 1.1-2.pgdg18.04+2 Architecture: i386 Maintainer: Debian PostgreSQL Maintainers Installed-Size: 28 Depends: postgresql-9.3 Homepage: https://github.com/credativ/toastinfo Priority: optional Section: database Filename: pool/main/t/toastinfo/postgresql-9.3-toastinfo_1.1-2.pgdg18.04+2_i386.deb Size: 5824 SHA256: de03eb492d75c1794ccd02f0e5207924813812ffe2b0f8478bfa3e5c3c5b4907 SHA1: 89970528b2839773b3e0182ead6643a0b3ad716b MD5sum: c6350851e4c6055d758bb98e45d57ba5 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.