TODO marked as done:
Bruce Momjian <bruce@momjian.us>
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
Files
| Path | Change | +/− |
|---|---|---|
| doc/src/sgml/ref/psql-ref.sgml | modified | +24 −1 |
| src/backend/catalog/namespace.c | modified | +91 −2 |
| src/bin/psql/command.c | modified | +8 −2 |
| src/bin/psql/describe.c | modified | +101 −1 |
| src/bin/psql/describe.h | modified | +8 −1 |
| src/bin/psql/help.c | modified | +3 −1 |
| src/include/catalog/catversion.h | modified | +2 −2 |
| src/include/catalog/namespace.h | modified | +3 −1 |
| src/include/catalog/pg_proc.h | modified | +3 −1 |