diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-07-15 03:56:06 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-07-15 03:56:06 +0000 |
commit | 93a1fce5ccd23a19b681c9804b63bc3c5423933f (patch) | |
tree | 6e8eb5d172068284e0b8a025b2d65c6e5a3ceb7d /src/bin/psql/describe.h | |
parent | a837ed88b128cd53e6a68cc75c2b17976360683f (diff) | |
download | postgresql-93a1fce5ccd23a19b681c9804b63bc3c5423933f.tar.gz postgresql-93a1fce5ccd23a19b681c9804b63bc3c5423933f.zip |
Add permission display to \db+.
Diffstat (limited to 'src/bin/psql/describe.h')
-rw-r--r-- | src/bin/psql/describe.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/describe.h b/src/bin/psql/describe.h index 8dcca759890..39b9563fe0a 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.25 2004/07/13 16:48:16 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/describe.h,v 1.26 2004/07/15 03:56:06 momjian Exp $ */ #ifndef DESCRIBE_H #define DESCRIBE_H @@ -14,7 +14,7 @@ bool describeAggregates(const char *pattern, bool verbose); /* \db */ -bool describeTablespaces(const char *pattern); +bool describeTablespaces(const char *pattern, bool verbose); /* \df */ bool describeFunctions(const char *pattern, bool verbose); |