diff options
Diffstat (limited to 'src/bin/psql/describe.h')
-rw-r--r-- | src/bin/psql/describe.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/bin/psql/describe.h b/src/bin/psql/describe.h index 673f3fe4865..7383ea6fa66 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.8 2000/02/16 13:15:26 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/describe.h,v 1.9 2000/04/12 17:16:22 momjian Exp $ */ #ifndef DESCRIBE_H #define DESCRIBE_H @@ -11,30 +11,30 @@ #include "settings.h" /* \da */ -bool describeAggregates(const char *name); +bool describeAggregates(const char *name); /* \df */ -bool describeFunctions(const char *name, bool verbose); +bool describeFunctions(const char *name, bool verbose); /* \dT */ -bool describeTypes(const char *name, bool verbose); +bool describeTypes(const char *name, bool verbose); /* \do */ -bool describeOperators(const char *name); +bool describeOperators(const char *name); /* \z (or \dp) */ -bool permissionsList(const char *name); +bool permissionsList(const char *name); /* \dd */ -bool objectDescription(const char *object); +bool objectDescription(const char *object); /* \d foo */ -bool describeTableDetails(const char *name, bool desc); +bool describeTableDetails(const char *name, bool desc); /* \l */ -bool listAllDbs(bool desc); +bool listAllDbs(bool desc); /* \dt, \di, \ds, \dS, etc. */ -bool listTables(const char *infotype, const char *name, bool desc); +bool listTables(const char *infotype, const char *name, bool desc); #endif /* DESCRIBE_H */ |