aboutsummaryrefslogtreecommitdiff
path: root/src/test/regress/expected/psql.out
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/regress/expected/psql.out')
-rw-r--r--src/test/regress/expected/psql.out12
1 files changed, 12 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)
+