summaryrefslogtreecommitdiff
path: root/src/bin/psql/describe.h
diff options
context:
space:
mode:
authorRobert Haas2011-08-08 16:26:13 +0000
committerRobert Haas2011-08-08 16:26:13 +0000
commitc9ac00e6ecfaad4d6a3e1ee478b912c7227ae62a (patch)
treef5978c874a95d67eb24c9280cb8a8132c54ffd37 /src/bin/psql/describe.h
parentb69f2e36402aaa222ed03c1769b3de6d5be5f302 (diff)
Teach psql to display the comments on conversions and domains.
\dc and \dD now accept a "+" option, which will cause the comments to be displayed. Along the way, correct a few oversights in the previous commit in this area, 3b17efdfdd846c9bfad1637686e6f18198ea3df5 - namely, (1) when \dL+ is used, make description still be the last column, for consistency with what we've done elsewhere; and (2) document the difference between \dC and \dC+. Josh Kupershmidt, with a couple of doc changes by me.
Diffstat (limited to 'src/bin/psql/describe.h')
-rw-r--r--src/bin/psql/describe.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/describe.h b/src/bin/psql/describe.h
index 7dc9a2c1548..bf4c31265e7 100644
--- a/src/bin/psql/describe.h
+++ b/src/bin/psql/describe.h
@@ -61,10 +61,10 @@ extern bool listAllDbs(bool verbose);
extern bool listTables(const char *tabtypes, const char *pattern, bool verbose, bool showSystem);
/* \dD */
-extern bool listDomains(const char *pattern, bool showSystem);
+extern bool listDomains(const char *pattern, bool verbose, bool showSystem);
/* \dc */
-extern bool listConversions(const char *pattern, bool showSystem);
+extern bool listConversions(const char *pattern, bool verbose, bool showSystem);
/* \dC */
extern bool listCasts(const char *pattern, bool verbose);