]> granicus.if.org Git - postgresql/commit
TODO marked as done:
authorBruce Momjian <bruce@momjian.us>
Thu, 12 Dec 2002 21:02:25 +0000 (21:02 +0000)
committerBruce Momjian <bruce@momjian.us>
Thu, 12 Dec 2002 21:02:25 +0000 (21:02 +0000)
commit40c4472e229e46b885f4563ab377d51ba7f5e88c
tree39c757f80439ff64cf7de0c7b48ac6d0a4ab9843
parent8ac39d02fd6d0a5679c1e000f097c2af69ab4ced
TODO marked as done:

* Add schema, cast, and conversion backslash commands to psql

I had to create a new publically available function,
pg_conversion_is_visible, as it seemed to be missing from the catalogs.
This required me to do no small amount of hacking around in namespace.c

I have updated the \? help and sgml docs.

\dc - list conversions [PATTERN]
\dC - list casts
\dn list schemas

I didn't support patterns with casts as there's nothing obvious to match
against.

Catalog version incremented --- initdb required.

Christopher Kings-Lynne
doc/src/sgml/ref/psql-ref.sgml
src/backend/catalog/namespace.c
src/bin/psql/command.c
src/bin/psql/describe.c
src/bin/psql/describe.h
src/bin/psql/help.c
src/include/catalog/catversion.h
src/include/catalog/namespace.h
src/include/catalog/pg_proc.h