diff options
| author | Bruce Momjian <bruce@momjian.us> | 2002-03-06 20:39:45 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2002-03-06 20:39:45 +0000 |
| commit | c666d6fd41d654967d89eb3316e8d4cc0a924fa1 (patch) | |
| tree | 97e100eef7cf6068cb0dc691ee7abe6bab6b00bd /src/bin/psql/describe.h | |
| parent | 01c76f7411c24b11e4ab36a9fe5f5017dc33be78 (diff) | |
| download | postgresql-c666d6fd41d654967d89eb3316e8d4cc0a924fa1.tar.gz | |
Here is a diff of changes to the psql source code implementing a simple
'list domains' command '\dD'. This is the interface component of
rbt@zort.ca's domain backend modifications.
Jonathan Eisler
Diffstat (limited to 'src/bin/psql/describe.h')
| -rw-r--r-- | src/bin/psql/describe.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/bin/psql/describe.h b/src/bin/psql/describe.h index 88c1b6df49..830612ee22 100644 --- a/src/bin/psql/describe.h +++ b/src/bin/psql/describe.h @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/describe.h,v 1.13 2001/11/05 17:46:31 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/describe.h,v 1.14 2002/03/06 20:39:45 momjian Exp $ */ #ifndef DESCRIBE_H #define DESCRIBE_H @@ -40,4 +40,7 @@ bool listAllDbs(bool desc); /* \dt, \di, \ds, \dS, etc. */ bool listTables(const char *infotype, const char *name, bool desc); +/* \dD */ +bool listDomains(const char *name); + #endif /* DESCRIBE_H */ |
