diff options
author | Tom Lane | 2019-07-23 19:25:56 +0000 |
---|---|---|
committer | Tom Lane | 2019-07-23 19:25:56 +0000 |
commit | eb5472da9f83c2e432ac27a053929947e354d20c (patch) | |
tree | bf796d3f5e6b8a96f46107b42f89e08f0340d89e /src/test | |
parent | 06140c201b982436974d71e756d7331767a41e57 (diff) |
Improve psql's \d output for TOAST tables.
Add the name of the owning table to the footers for a TOAST table.
Also, show all the same footers as for a regular table (in practice,
this adds the index and perhaps the tablespace and access method).
Justin Pryzby, reviewed by Fabien Coelho
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/regress/expected/psql.out | 12 | ||||
-rw-r--r-- | src/test/regress/sql/psql.sql | 3 |
2 files changed, 15 insertions, 0 deletions
diff --git a/src/test/regress/expected/psql.out b/src/test/regress/expected/psql.out index 9021c808dcf..ef534a36a06 100644 --- a/src/test/regress/expected/psql.out +++ b/src/test/regress/expected/psql.out @@ -4748,3 +4748,15 @@ drop schema testpart; set search_path to default; set role to default; drop role regress_partitioning_role; +-- \d on toast table (use pg_statistic's toast table, which has a known name) +\d pg_toast.pg_toast_2619 +TOAST table "pg_toast.pg_toast_2619" + Column | Type +------------+--------- + chunk_id | oid + chunk_seq | integer + chunk_data | bytea +Owning table: "pg_catalog.pg_statistic" +Indexes: + "pg_toast_2619_index" PRIMARY KEY, btree (chunk_id, chunk_seq) + diff --git a/src/test/regress/sql/psql.sql b/src/test/regress/sql/psql.sql index cefe41bdc2e..2e379849625 100644 --- a/src/test/regress/sql/psql.sql +++ b/src/test/regress/sql/psql.sql @@ -1131,3 +1131,6 @@ set search_path to default; set role to default; drop role regress_partitioning_role; + +-- \d on toast table (use pg_statistic's toast table, which has a known name) +\d pg_toast.pg_toast_2619 |