diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2017-06-19 18:32:22 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2017-06-19 18:32:22 -0400 |
commit | 20f67e7a29dcacd234a4deecd019a54083b8321a (patch) | |
tree | cc6dd9c8fb374d5a5a8988f80dd485a284f9d37e /src | |
parent | d063f972d23a303c32f612155b777c4674862dd6 (diff) | |
download | postgresql-20f67e7a29dcacd234a4deecd019a54083b8321a.tar.gz postgresql-20f67e7a29dcacd234a4deecd019a54083b8321a.zip |
Fix materialized-view documentation oversights.
When materialized views were added, psql's \d commands were made to
treat them as a separate object category ... but not everyplace in the
documentation or comments got the memo.
Noted by David Johnston. Back-patch to 9.3 where matviews came in.
Discussion: https://postgr.es/m/CAKFQuwb27M3VXRhHErjCpkWwN9eKThbqWb1=trtoXi9_ejqPXQ@mail.gmail.com
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/describe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index 8b4fe709692..7c878c12aa5 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -2726,7 +2726,6 @@ listDbRoleSettings(const char *pattern, const char *pattern2) * s - sequences * E - foreign table (Note: different from 'f', the relkind value) * (any order of the above is fine) - * If tabtypes is empty, we default to \dtvsE. */ bool listTables(const char *tabtypes, const char *pattern, bool verbose, bool showSystem) @@ -2743,6 +2742,7 @@ listTables(const char *tabtypes, const char *pattern, bool verbose, bool showSys printQueryOpt myopt = pset.popt; static const bool translate_columns[] = {false, false, true, false, false, false, false}; + /* If tabtypes is empty, we default to \dtvmsE (but see also command.c) */ if (!(showTables || showIndexes || showViews || showMatViews || showSeq || showForeign)) showTables = showViews = showMatViews = showSeq = showForeign = true; |