diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-08-09 03:32:16 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-08-09 03:32:16 +0000 |
commit | 50982933f86f97b1fe29076fb6eaee554dacc4a6 (patch) | |
tree | e6c528b240da6aed44cf70b2498f39f68a51adf4 /src | |
parent | f7b7b0399c5dfb2825ed0cd78b8aae0d044d526a (diff) | |
download | postgresql-50982933f86f97b1fe29076fb6eaee554dacc4a6.tar.gz postgresql-50982933f86f97b1fe29076fb6eaee554dacc4a6.zip |
Add TOAST table to the set of relkinds known to \d.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/describe.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index d0f5ccf3bb5..b5f9916b19e 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.36 2001/08/05 22:13:46 tgl Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.37 2001/08/09 03:32:16 tgl Exp $ */ #include "postgres_fe.h" #include "describe.h" @@ -631,6 +631,9 @@ describeTableDetails(const char *name, bool desc) case 's': snprintf(title, 32 + NAMEDATALEN, _("Special relation \"%s\""), name); break; + case 't': + snprintf(title, 32 + NAMEDATALEN, _("TOAST table \"%s\""), name); + break; default: snprintf(title, 32 + NAMEDATALEN, _("?%c? \"%s\""), tableinfo.relkind, name); break; |