diff options
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 acc841a02b2..195bf0e5578 100644 --- a/src/bin/psql/describe.h +++ b/src/bin/psql/describe.h @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2003, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/describe.h,v 1.23 2003/12/01 22:21:54 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/describe.h,v 1.24 2004/06/18 06:14:04 tgl Exp $ */ #ifndef DESCRIBE_H #define DESCRIBE_H @@ -13,6 +13,9 @@ /* \da */ bool describeAggregates(const char *pattern, bool verbose); +/* \db */ +bool describeTablespaces(const char *pattern); + /* \df */ bool describeFunctions(const char *pattern, bool verbose); |