From 40c4472e229e46b885f4563ab377d51ba7f5e88c Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 12 Dec 2002 21:02:25 +0000 Subject: 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 | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) (limited to 'doc/src') diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index bb8d8f5eb41..66a92802bae 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -1,5 +1,5 @@ @@ -851,6 +851,29 @@ testdb=> + + \dc [ pattern ] + + + Lists all available conversions (between encodings). If pattern + is specified, only matching conversions are shown. + + + + + + + \dC + + + Lists all available type casts. Casts can be explicit, explicit and assignment + or implicit, and are used to change a variable from one type to another. + + + + + \df [ pattern ] -- cgit v1.2.3