Implement an "S" option for psql's \dn command.

Tom Lane <tgl@sss.pgh.pa.us>

Commit: e43fb604d6db229d70d3101aa53348cc16a5473a
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2010-11-07T01:41:14Z
Releases: 9.1.0
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

PathChange+/−
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