blob: 8c2e864474a19e3951cef9475273ccd7bfedcd5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/*
* psql - the PostgreSQL interactive terminal
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
* $Header: /cvsroot/pgsql/src/bin/psql/describe.h,v 1.21 2003/08/04 23:59:40 tgl Exp $
*/
#ifndef DESCRIBE_H
#define DESCRIBE_H
#include "settings.h"
/* \da */
bool describeAggregates(const char *pattern, bool verbose);
/* \df */
bool describeFunctions(const char *pattern, bool verbose);
/* \dT */
bool describeTypes(const char *pattern, bool verbose);
/* \do */
bool describeOperators(const char *pattern);
/* \du */
bool describeUsers(const char *pattern);
/* \z (or \dp) */
bool permissionsList(const char *pattern);
/* \dd */
bool objectDescription(const char *pattern);
/* \d foo */
bool describeTableDetails(const char *pattern, bool verbose);
/* \l */
bool listAllDbs(bool verbose);
/* \dt, \di, \ds, \dS, etc. */
bool listTables(const char *tabtypes, const char *pattern, bool verbose);
/* \dD */
bool listDomains(const char *pattern);
/* \dc */
bool listConversions(const char *pattern);
/* \dC */
bool listCasts(const char *pattern);
/* \dn */
bool listSchemas(const char *pattern);
#endif /* DESCRIBE_H */
|