Make psql \dT always show descriptions. There is room.

This commit is contained in:
Bruce Momjian 1999-12-31 21:06:19 +00:00
parent d8f3752133
commit eb9bb3de33
1 changed files with 5 additions and 2 deletions

View File

@ -175,8 +175,11 @@ describeTypes(const char *name, PsqlSettings *pset, bool verbose, bool desc)
",\n (CASE WHEN t.typlen=-1 THEN 'var'::text ELSE t.typlen::text END) as \"Length\""
",\n u.usename as \"Owner\""
);
if (desc)
strcat(buf, ",\n obj_description(t.oid) as \"Description\"");
/*
* Let's always show descriptions for this. There is room.
* bjm 1999/12/31
*/
strcat(buf, ",\n obj_description(t.oid) as \"Description\"");
/*
* do not include array types (start with underscore),
* do not include user relations (typrelid!=0)