diff options
Diffstat (limited to 'src/bin/psql/describe.h')
-rw-r--r-- | src/bin/psql/describe.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/bin/psql/describe.h b/src/bin/psql/describe.h index 39856a0c7e8..71b320f1fc6 100644 --- a/src/bin/psql/describe.h +++ b/src/bin/psql/describe.h @@ -19,13 +19,17 @@ extern bool describeAccessMethods(const char *pattern, bool verbose); extern bool describeTablespaces(const char *pattern, bool verbose); /* \df, \dfa, \dfn, \dft, \dfw, etc. */ -extern bool describeFunctions(const char *functypes, const char *pattern, bool verbose, bool showSystem); +extern bool describeFunctions(const char *functypes, const char *func_pattern, + char **arg_patterns, int num_arg_patterns, + bool verbose, bool showSystem); /* \dT */ extern bool describeTypes(const char *pattern, bool verbose, bool showSystem); /* \do */ -extern bool describeOperators(const char *pattern, bool verbose, bool showSystem); +extern bool describeOperators(const char *oper_pattern, + char **arg_patterns, int num_arg_patterns, + bool verbose, bool showSystem); /* \du, \dg */ extern bool describeRoles(const char *pattern, bool verbose, bool showSystem); |