--- toastinfo-1.1.orig/debian/changelog +++ toastinfo-1.1/debian/changelog @@ -1,3 +1,16 @@ +toastinfo (1.1-2.pgdg+2) sid-pgdg; urgency=medium + + * Rebuild for sid-pgdg. + * No source changes. + + -- PostgreSQL on Debian and Ubuntu Wed, 17 Oct 2018 12:55:43 +0200 + +toastinfo (1.1-2) unstable; urgency=medium + + * Upload for PostgreSQL 11. + + -- Christoph Berg Wed, 17 Oct 2018 12:55:43 +0200 + toastinfo (1.1-1) unstable; urgency=medium * New upstream release with rpm spec files. --- toastinfo-1.1.orig/debian/control +++ toastinfo-1.1/debian/control @@ -9,12 +9,112 @@ Vcs-Browser: https://github.com/credativ/toastinfo Vcs-Git: https://github.com/credativ/toastinfo.git +Package: postgresql-9.3-toastinfo +Architecture: any +Depends: postgresql-9.3, ${misc:Depends}, ${shlibs:Depends} +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. + +Package: postgresql-9.4-toastinfo +Architecture: any +Depends: postgresql-9.4, ${misc:Depends}, ${shlibs:Depends} +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. + +Package: postgresql-9.5-toastinfo +Architecture: any +Depends: postgresql-9.5, ${misc:Depends}, ${shlibs:Depends} +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. + +Package: postgresql-9.6-toastinfo +Architecture: any +Depends: postgresql-9.6, ${misc:Depends}, ${shlibs:Depends} +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. + Package: postgresql-10-toastinfo Architecture: any Depends: postgresql-10, ${misc:Depends}, ${shlibs:Depends} 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. + +Package: postgresql-11-toastinfo +Architecture: any +Depends: postgresql-11, ${misc:Depends}, ${shlibs:Depends} +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: .