Implement an "S" option for psql's \dn command.
Tom Lane <tgl@sss.pgh.pa.us>
Implement an "S" option for psql's \dn command.
\dn without "S" now hides all pg_XXX schemas as well as information_schema.
Thus, in a bare database you'll only see "public". ("public" is considered
a user schema, not a system schema, mainly because it's droppable.)
Per discussion back in late September.
Files
| Path | Change | +/− |
|---|---|---|
| doc/src/sgml/ref/psql-ref.sgml | modified | +5 −4 |
| src/bin/psql/command.c | modified | +1 −1 |
| src/bin/psql/describe.c | modified | +8 −5 |
| src/bin/psql/describe.h | modified | +1 −1 |