Package: postgresql-15-toastinfo Source: toastinfo Version: 1.7-1.pgdg26.04+1 Architecture: amd64 Maintainer: Debian PostgreSQL Maintainers Installed-Size: 45 Depends: postgresql-15 Breaks: postgresql-15-jit-llvm (<< 21) Homepage: https://github.com/df7cb/toastinfo Priority: optional Section: database Filename: pool/main/t/toastinfo/postgresql-15-toastinfo_1.7-1.pgdg26.04+1_amd64.deb Size: 12832 SHA512: bd0cfec47bce578131b38ff0f246bb9614dad7cb22021b813aeb2753294dcdb7bd60727be4906546ebdef8cdc8de1b47fc4133cef620f94fb2d4b94ffc6faa4f SHA256: 79d178d5dbc7908d26c7964413da26cd4ef6f8551e7134d02c1b851e5b6147a6 SHA1: 3fe5c528471dcdbae1469eea4b1a0b4d995ff9c0 MD5sum: ba2e3c0b7765e546d93980d1546479d7 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.