postgres/src/bin/psql/describe.c

1090 lines
26 KiB
C
Raw Normal View History

2000-01-18 23:30:24 +00:00
/*
* psql - the PostgreSQL interactive terminal
*
* Copyright 2000 by PostgreSQL Global Development Group
2000-01-18 23:30:24 +00:00
*
* $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.38 2001/08/10 18:57:39 tgl Exp $
2000-01-18 23:30:24 +00:00
*/
#include "postgres_fe.h"
#include "describe.h"
2000-02-16 13:15:26 +00:00
#include "libpq-fe.h"
#include "common.h"
#include "settings.h"
#include "print.h"
#include "variables.h"
#define _(x) gettext((x))
/*----------------
* Handlers for various slash commands displaying some sort of list
* of things in the database.
*
* If you add something here, try to format the query to look nice in -E output.
*----------------
*/
/* the maximal size of regular expression we'll accept here */
/* (it is safe to just change this here) */
#define REGEXP_CUTOFF (10 * NAMEDATALEN)
/* \da
* takes an optional regexp to match specific aggregates by name
*/
bool
describeAggregates(const char *name)
{
char buf[384 + REGEXP_CUTOFF];
1999-11-04 23:14:30 +00:00
PGresult *res;
printQueryOpt myopt = pset.popt;
1999-11-04 23:14:30 +00:00
/*
* There are two kinds of aggregates: ones that work on particular
* types ones that work on all
*/
snprintf(buf, sizeof(buf),
"SELECT a.aggname AS \"%s\",\n"
" CASE a.aggbasetype\n"
" WHEN 0 THEN CAST('%s' AS text)\n"
" ELSE format_type(a.aggbasetype, NULL)\n"
" END AS \"%s\",\n"
" obj_description(a.oid, 'pg_aggregate') as \"%s\"\n"
"FROM pg_aggregate a\n",
_("Name"), _("(all types)"),
_("Data type"), _("Description") );
1999-11-04 23:14:30 +00:00
if (name)
{
strcat(buf, "WHERE a.aggname ~ '^");
strncat(buf, name, REGEXP_CUTOFF);
strcat(buf, "'\n");
1999-11-04 23:14:30 +00:00
}
strcat(buf, "ORDER BY 1, 2;");
1999-11-04 23:14:30 +00:00
res = PSQLexec(buf);
1999-11-04 23:14:30 +00:00
if (!res)
return false;
myopt.nullPrint = NULL;
myopt.title = _("List of aggregate functions");
1999-11-04 23:14:30 +00:00
printQuery(res, &myopt, pset.queryFout);
1999-11-04 23:14:30 +00:00
PQclear(res);
return true;
}
/* \df
* Takes an optional regexp to narrow down the function name
*/
bool
describeFunctions(const char *name, bool verbose)
{
char buf[384 + REGEXP_CUTOFF];
1999-11-04 23:14:30 +00:00
PGresult *res;
printQueryOpt myopt = pset.popt;
1999-11-04 23:14:30 +00:00
/*
* we skip in/out funcs by excluding functions that take some
* arguments, but have no types defined for those arguments
*/
snprintf(buf, sizeof(buf),
"SELECT format_type(p.prorettype, NULL) as \"%s\",\n"
" p.proname as \"%s\",\n"
" oidvectortypes(p.proargtypes) as \"%s\"",
_("Result data type"), _("Name"),
_("Argument data types") );
if (verbose)
snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
",\n u.usename as \"%s\",\n"
" l.lanname as \"%s\",\n"
" p.prosrc as \"%s\",\n"
" obj_description(p.oid, 'pg_proc') as \"%s\"",
_("Owner"), _("Language"),
_("Source code"), _("Description") );
if (!verbose)
strcat(buf,
"\nFROM pg_proc p\n"
"WHERE p.prorettype <> 0 AND (pronargs = 0 OR oidvectortypes(p.proargtypes) <> '')\n");
else
strcat(buf,
"\nFROM pg_proc p, pg_language l, pg_user u\n"
"WHERE p.prolang = l.oid AND p.proowner = u.usesysid\n"
" AND p.prorettype <> 0 AND (pronargs = 0 OR oidvectortypes(p.proargtypes) <> '')\n");
1999-11-04 23:14:30 +00:00
if (name)
{
strcat(buf, " AND p.proname ~ '^");
strncat(buf, name, REGEXP_CUTOFF);
strcat(buf, "'\n");
1999-11-04 23:14:30 +00:00
}
strcat(buf, "ORDER BY 2, 1, 3;");
1999-11-04 23:14:30 +00:00
res = PSQLexec(buf);
1999-11-04 23:14:30 +00:00
if (!res)
return false;
myopt.nullPrint = NULL;
myopt.title = _("List of functions");
1999-11-04 23:14:30 +00:00
printQuery(res, &myopt, pset.queryFout);
1999-11-04 23:14:30 +00:00
PQclear(res);
return true;
}
/*
* \dT
* describe types
*/
bool
describeTypes(const char *name, bool verbose)
{
char buf[384 + 2 * REGEXP_CUTOFF];
1999-11-04 23:14:30 +00:00
PGresult *res;
printQueryOpt myopt = pset.popt;
1999-11-04 23:14:30 +00:00
snprintf(buf, sizeof(buf),
"SELECT format_type(t.oid, NULL) AS \"%s\",\n",
_("Name") );
if (verbose)
snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
" t.typname AS \"%s\",\n"
" CASE WHEN t.typlen = -1\n"
" THEN CAST('var' AS text)\n"
" ELSE CAST(t.typlen AS text)\n"
" END AS \"%s\",\n",
_("Internal name"), _("Size") );
snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
" obj_description(t.oid, 'pg_type') as \"%s\"\n",
_("Description") );
/*
* do not include array types (start with underscore), do not include
* user relations (typrelid!=0)
*/
strcat(buf, "FROM pg_type t\nWHERE t.typrelid = 0 AND t.typname !~ '^_.*'\n");
1999-11-04 23:14:30 +00:00
if (name)
{
/* accept either internal or external type name */
strcat(buf, " AND (format_type(t.oid, NULL) ~ '^");
strncat(buf, name, REGEXP_CUTOFF);
strcat(buf, "' OR t.typname ~ '^");
strncat(buf, name, REGEXP_CUTOFF);
strcat(buf, "')\n");
1999-11-04 23:14:30 +00:00
}
strcat(buf, "ORDER BY 1;");
1999-11-04 23:14:30 +00:00
res = PSQLexec(buf);
1999-11-04 23:14:30 +00:00
if (!res)
return false;
myopt.nullPrint = NULL;
myopt.title = _("List of data types");
1999-11-04 23:14:30 +00:00
printQuery(res, &myopt, pset.queryFout);
1999-11-04 23:14:30 +00:00
PQclear(res);
return true;
}
/* \do
*/
bool
describeOperators(const char *name)
{
char buf[384 + REGEXP_CUTOFF];
1999-11-04 23:14:30 +00:00
PGresult *res;
printQueryOpt myopt = pset.popt;
1999-11-04 23:14:30 +00:00
snprintf(buf, sizeof(buf),
"SELECT o.oprname AS \"%s\",\n"
" CASE WHEN o.oprkind='l' THEN NULL ELSE format_type(o.oprleft, NULL) END AS \"%s\",\n"
" CASE WHEN o.oprkind='r' THEN NULL ELSE format_type(o.oprright, NULL) END AS \"%s\",\n"
" format_type(p.prorettype, NULL) AS \"%s\",\n"
" obj_description(p.oid, 'pg_proc') as \"%s\"\n"
"FROM pg_proc p, pg_operator o\n"
"WHERE RegprocToOid(o.oprcode) = p.oid\n",
_("Name"), _("Left arg type"), _("Right arg type"),
_("Result type"), _("Description") );
1999-11-04 23:14:30 +00:00
if (name)
{
strcat(buf, " AND o.oprname = '");
strncat(buf, name, REGEXP_CUTOFF);
strcat(buf, "'\n");
1999-11-04 23:14:30 +00:00
}
strcat(buf, "ORDER BY 1, 2, 3, 4;");
1999-11-04 23:14:30 +00:00
res = PSQLexec(buf);
1999-11-04 23:14:30 +00:00
if (!res)
return false;
myopt.nullPrint = NULL;
myopt.title = _("List of operators");
1999-11-04 23:14:30 +00:00
printQuery(res, &myopt, pset.queryFout);
1999-11-04 23:14:30 +00:00
PQclear(res);
return true;
}
/*
* listAllDbs
*
* for \l, \list, and -l switch
*/
bool
listAllDbs(bool desc)
{
1999-11-04 23:14:30 +00:00
PGresult *res;
char buf[1024];
printQueryOpt myopt = pset.popt;
snprintf(buf, sizeof(buf),
"SELECT d.datname as \"%s\",\n"
" u.usename as \"%s\"",
_("Name"), _("Owner"));
#ifdef MULTIBYTE
snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
",\n pg_encoding_to_char(d.encoding) as \"%s\"",
_("Encoding"));
#endif
if (desc)
snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
",\n obj_description(d.oid, 'pg_database') as \"%s\"",
_("Description"));
strcat(buf,
"\nFROM pg_database d LEFT JOIN pg_user u ON d.datdba = u.usesysid\n"
"ORDER BY 1;");
res = PSQLexec(buf);
1999-11-04 23:14:30 +00:00
if (!res)
return false;
1999-11-04 23:14:30 +00:00
myopt.nullPrint = NULL;
myopt.title = _("List of databases");
printQuery(res, &myopt, pset.queryFout);
1999-11-04 23:14:30 +00:00
PQclear(res);
return true;
}
/*
* List Tables Grant/Revoke Permissions
* \z (now also \dp -- perhaps more mnemonic)
*/
bool
permissionsList(const char *name)
{
char buf[256 + REGEXP_CUTOFF];
1999-11-04 23:14:30 +00:00
PGresult *res;
printQueryOpt myopt = pset.popt;
1999-11-04 23:14:30 +00:00
/* Currently, we ignore indexes since they have no meaningful rights */
snprintf(buf, sizeof(buf),
"SELECT relname as \"%s\",\n"
" relacl as \"%s\"\n"
"FROM pg_class\n"
"WHERE relkind in ('r', 'v', 'S') AND\n"
" relname NOT LIKE 'pg$_%%' ESCAPE '$'\n",
_("Table"), _("Access privileges"));
1999-11-04 23:14:30 +00:00
if (name)
{
strcat(buf, " AND relname ~ '^");
strncat(buf, name, REGEXP_CUTOFF);
strcat(buf, "'\n");
1999-11-04 23:14:30 +00:00
}
strcat(buf, "ORDER BY 1;");
res = PSQLexec(buf);
1999-11-04 23:14:30 +00:00
if (!res)
return false;
myopt.nullPrint = NULL;
sprintf(buf, _("Access privileges for database \"%s\""), PQdb(pset.db));
myopt.title = buf;
printQuery(res, &myopt, pset.queryFout);
1999-11-04 23:14:30 +00:00
PQclear(res);
return true;
}
/*
* Get object comments
*
* \dd [foo]
*
* Note: This only lists things that actually have a description. For complete
* lists of things, there are other \d? commands.
*/
bool
objectDescription(const char *object)
{
char descbuf[2048 + REGEXP_CUTOFF];
1999-11-04 23:14:30 +00:00
PGresult *res;
printQueryOpt myopt = pset.popt;
1999-11-04 23:14:30 +00:00
snprintf(descbuf, sizeof(descbuf),
"SELECT DISTINCT tt.name AS \"%s\", tt.object AS \"%s\", d.description AS \"%s\"\n"
"FROM (\n"
/* Aggregate descriptions */
" SELECT a.oid as oid, a.tableoid as tableoid,\n"
" CAST(a.aggname AS text) as name, CAST('%s' AS text) as object\n"
" FROM pg_aggregate a\n"
/* Function descriptions (except in/outs for datatypes) */
"UNION ALL\n"
" SELECT p.oid as oid, p.tableoid as tableoid,\n"
" CAST(p.proname AS text) as name, CAST('%s' AS text) as object\n"
" FROM pg_proc p\n"
" WHERE p.pronargs = 0 or oidvectortypes(p.proargtypes) <> ''\n"
/* Operator descriptions (must get comment via associated function) */
"UNION ALL\n"
" SELECT RegprocToOid(o.oprcode) as oid,\n"
" (SELECT oid FROM pg_class WHERE relname = 'pg_proc') as tableoid,\n"
" CAST(o.oprname AS text) as name, CAST('%s' AS text) as object\n"
" FROM pg_operator o\n"
/* Type description */
"UNION ALL\n"
" SELECT t.oid as oid, t.tableoid as tableoid,\n"
" format_type(t.oid, NULL) as name, CAST('%s' AS text) as object\n"
" FROM pg_type t\n"
/* Relation (tables, views, indexes, sequences) descriptions */
"UNION ALL\n"
" SELECT c.oid as oid, c.tableoid as tableoid,\n"
" CAST(c.relname AS text) as name,\n"
" CAST(\n"
" CASE c.relkind WHEN 'r' THEN '%s' WHEN 'v' THEN '%s' WHEN 'i' THEN '%s' WHEN 'S' THEN '%s' END"
" AS text) as object\n"
" FROM pg_class c\n"
/* Rule description (ignore rules for views) */
"UNION ALL\n"
" SELECT r.oid as oid, r.tableoid as tableoid,\n"
" CAST(r.rulename AS text) as name, CAST('%s' AS text) as object\n"
" FROM pg_rewrite r\n"
" WHERE r.rulename !~ '^_RET'\n"
/* Trigger description */
"UNION ALL\n"
" SELECT t.oid as oid, t.tableoid as tableoid,\n"
" CAST(t.tgname AS text) as name, CAST('%s' AS text) as object\n"
" FROM pg_trigger t\n"
") AS tt,\n"
"pg_description d\n"
"WHERE tt.oid = d.objoid and tt.tableoid = d.classoid and d.objsubid = 0\n",
_("Name"), _("Object"), _("Description"),
_("aggregate"), _("function"), _("operator"),
_("data type"), _("table"), _("view"),
_("index"), _("sequence"), _("rule"),
_("trigger")
);
1999-11-04 23:14:30 +00:00
if (object)
{
strcat(descbuf, " AND tt.name ~ '^");
1999-11-04 23:14:30 +00:00
strncat(descbuf, object, REGEXP_CUTOFF);
strcat(descbuf, "'\n");
}
strcat(descbuf, "ORDER BY 1;");
1999-11-04 23:14:30 +00:00
res = PSQLexec(descbuf);
1999-11-04 23:14:30 +00:00
if (!res)
return false;
myopt.nullPrint = NULL;
myopt.title = _("Object descriptions");
1999-11-04 23:14:30 +00:00
printQuery(res, &myopt, pset.queryFout);
1999-11-04 23:14:30 +00:00
PQclear(res);
return true;
}
/*
* describeTableDetails (for \d)
*
* Unfortunately, the information presented here is so complicated that it cannot
* be done in a single query. So we have to assemble the printed table by hand
* and pass it to the underlying printTable() function.
*
*/
1999-11-04 23:14:30 +00:00
static void *
xmalloc(size_t size)
{
1999-11-04 23:14:30 +00:00
void *tmp;
tmp = malloc(size);
if (!tmp)
{
psql_error("out of memory\n");
1999-11-04 23:14:30 +00:00
exit(EXIT_FAILURE);
}
return tmp;
}
bool
describeTableDetails(const char *name, bool desc)
{
2000-01-10 05:20:26 +00:00
char buf[512 + INDEX_MAX_KEYS * NAMEDATALEN];
PGresult *res = NULL;
printTableOpt myopt = pset.popt.topt;
1999-11-04 23:14:30 +00:00
int i;
const char *view_def = NULL;
const char *headers[5];
1999-11-04 23:14:30 +00:00
char **cells = NULL;
char *title = NULL;
char **footers = NULL;
char **ptr;
unsigned int cols;
struct
{
bool hasindex;
char relkind;
int16 checks;
int16 triggers;
bool hasrules;
} tableinfo;
bool error = false;
/* truncate table name */
if (strlen(name) > NAMEDATALEN)
{
char *my_name = xmalloc(NAMEDATALEN + 1);
1999-11-04 23:14:30 +00:00
strncpy(my_name, name, NAMEDATALEN);
my_name[NAMEDATALEN] = '\0';
name = my_name;
}
1999-11-04 23:14:30 +00:00
/* Get general table info */
sprintf(buf,
"SELECT relhasindex, relkind, relchecks, reltriggers, relhasrules\n"
"FROM pg_class WHERE relname='%s'",
name);
res = PSQLexec(buf);
if (!res)
return false;
1999-11-04 23:14:30 +00:00
/* Did we get anything? */
if (PQntuples(res) == 0)
{
if (!QUIET())
fprintf(stderr, _("Did not find any relation named \"%s\".\n"), name);
1999-11-04 23:14:30 +00:00
PQclear(res);
return false;
}
/* FIXME: check for null pointers here? */
tableinfo.hasindex = strcmp(PQgetvalue(res, 0, 0), "t") == 0;
tableinfo.relkind = *(PQgetvalue(res, 0, 1));
tableinfo.checks = atoi(PQgetvalue(res, 0, 2));
tableinfo.triggers = atoi(PQgetvalue(res, 0, 3));
tableinfo.hasrules = strcmp(PQgetvalue(res, 0, 4), "t") == 0;
PQclear(res);
1999-11-04 23:14:30 +00:00
headers[0] = _("Column");
headers[1] = _("Type");
cols = 2;
1999-11-04 23:14:30 +00:00
if (tableinfo.relkind == 'r' || tableinfo.relkind == 'v')
{
cols++;
headers[cols - 1] = _("Modifiers");
}
1999-11-04 23:14:30 +00:00
if (desc)
1999-11-04 23:14:30 +00:00
{
cols++;
headers[cols - 1] = _("Description");
1999-11-04 23:14:30 +00:00
}
headers[cols] = NULL;
/* Get column info */
strcpy(buf, "SELECT a.attname, format_type(a.atttypid, a.atttypmod), a.attnotnull, a.atthasdef, a.attnum");
if (desc)
strcat(buf, ", col_description(a.attrelid, a.attnum)");
strcat(buf, "\nFROM pg_class c, pg_attribute a\n"
"WHERE c.relname = '");
strncat(buf, name, NAMEDATALEN);
strcat(buf, "'\n AND a.attnum > 0 AND a.attrelid = c.oid\n"
"ORDER BY a.attnum");
res = PSQLexec(buf);
if (!res)
return false;
/* Check if table is a view */
if (tableinfo.hasrules)
{
PGresult *result;
sprintf(buf, "SELECT definition FROM pg_views WHERE viewname = '%s'", name);
result = PSQLexec(buf);
if (!result)
{
PQclear(res);
PQclear(result);
return false;
}
if (PQntuples(result) > 0)
view_def = xstrdup(PQgetvalue(result, 0, 0));
PQclear(result);
}
/* Generate table cells to be printed */
cells = xmalloc((PQntuples(res) * cols + 1) * sizeof(*cells));
cells[PQntuples(res) * cols] = NULL; /* end of list */
1999-11-04 23:14:30 +00:00
for (i = 0; i < PQntuples(res); i++)
{
/* Name */
cells[i * cols + 0] = PQgetvalue(res, i, 0); /* don't free this
* afterwards */
1999-11-04 23:14:30 +00:00
/* Type */
cells[i * cols + 1] = PQgetvalue(res, i, 1); /* don't free this
2001-03-22 04:01:46 +00:00
* either */
/* Extra: not null and default */
/* (I'm cutting off the 'default' string at 128) */
if (tableinfo.relkind == 'r' || tableinfo.relkind == 'v')
{
cells[i * cols + 2] = xmalloc(128 + 128);
cells[i * cols + 2][0] = '\0';
if (strcmp(PQgetvalue(res, i, 2), "t") == 0)
strcat(cells[i * cols + 2], "not null");
/* handle "default" here */
if (strcmp(PQgetvalue(res, i, 3), "t") == 0)
{
PGresult *result;
sprintf(buf, "SELECT substring(d.adsrc for 128) FROM pg_attrdef d, pg_class c\n"
"WHERE c.relname = '%s' AND c.oid = d.adrelid AND d.adnum = %s",
name, PQgetvalue(res, i, 4));
result = PSQLexec(buf);
if (!result)
error = true;
else
{
if (cells[i * cols + 2][0])
strcat(cells[i * cols + 2], " ");
strcat(cells[i * cols + 2], "default ");
strcat(cells[i * cols + 2], PQgetvalue(result, 0, 0));
PQclear(result);
}
}
}
if (error)
break;
1999-11-04 23:14:30 +00:00
/* Description */
if (desc)
cells[i * cols + cols - 1] = PQgetvalue(res, i, 5);
1999-11-04 23:14:30 +00:00
}
1999-11-04 23:14:30 +00:00
/* Make title */
title = xmalloc(32 + NAMEDATALEN);
switch (tableinfo.relkind)
{
case 'r':
snprintf(title, 32 + NAMEDATALEN, _("Table \"%s\""), name);
break;
case 'v':
snprintf(title, 32 + NAMEDATALEN, _("View \"%s\""), name);
break;
case 'S':
snprintf(title, 32 + NAMEDATALEN, _("Sequence \"%s\""), name);
break;
case 'i':
snprintf(title, 32 + NAMEDATALEN, _("Index \"%s\""), name);
break;
case 's':
snprintf(title, 32 + NAMEDATALEN, _("Special relation \"%s\""), name);
break;
case 't':
snprintf(title, 32 + NAMEDATALEN, _("TOAST table \"%s\""), name);
break;
default:
snprintf(title, 32 + NAMEDATALEN, _("?%c? \"%s\""), tableinfo.relkind, name);
break;
}
1999-11-04 23:14:30 +00:00
/* Make footers */
if (tableinfo.relkind == 'i')
{
/* Footer information about an index */
PGresult *result;
sprintf(buf, "SELECT i.indisunique, i.indisprimary, i.indislossy, a.amname,\n"
" pg_get_expr(i.indpred, i.indrelid) as indpred\n"
"FROM pg_index i, pg_class c, pg_am a\n"
"WHERE i.indexrelid = c.oid AND c.relname = '%s' AND c.relam = a.oid",
name);
result = PSQLexec(buf);
if (!result || PQntuples(result) != 1)
error = true;
else
{
char *indisunique = PQgetvalue(result, 0, 0);
char *indisprimary = PQgetvalue(result, 0, 1);
char *indislossy = PQgetvalue(result, 0, 2);
char *indamname = PQgetvalue(result, 0, 3);
char *indpred = PQgetvalue(result, 0, 4);
footers = xmalloc(3 * sizeof(*footers));
2001-07-08 14:42:17 +00:00
/* XXX This construction is poorly internationalized. */
footers[0] = xmalloc(NAMEDATALEN + 128);
snprintf(footers[0], NAMEDATALEN + 128, "%s%s",
strcmp(indisunique, "t") == 0 ? _("unique ") : "",
indamname);
if (strcmp(indisprimary, "t") == 0)
2001-07-08 14:42:17 +00:00
snprintf(footers[0] + strlen(footers[0]),
NAMEDATALEN + 128 - strlen(footers[0]),
_(" (primary key)"));
if (strcmp(indislossy, "t") == 0)
snprintf(footers[0] + strlen(footers[0]),
NAMEDATALEN + 128 - strlen(footers[0]),
_(" (lossy)"));
if (strlen(indpred) > 0)
{
footers[1] = xmalloc(64 + strlen(indpred));
snprintf(footers[1], 64 + strlen(indpred),
_("Index predicate: %s"), indpred);
footers[2] = NULL;
}
else
footers[1] = NULL;
}
}
else if (view_def)
1999-11-04 23:14:30 +00:00
{
/* Footer information about a view */
1999-11-04 23:14:30 +00:00
footers = xmalloc(2 * sizeof(*footers));
footers[0] = xmalloc(64 + strlen(view_def));
snprintf(footers[0], 64 + strlen(view_def),
_("View definition: %s"), view_def);
1999-11-04 23:14:30 +00:00
footers[1] = NULL;
}
else if (tableinfo.relkind == 'r')
1999-11-04 23:14:30 +00:00
{
/* Footer information about a table */
PGresult *result1 = NULL,
*result2 = NULL,
*result3 = NULL,
*result4 = NULL,
*result5 = NULL,
*result6 = NULL;
int index_count = 0,
primary_count = 0,
unique_count = 0,
constr_count = 0,
rule_count = 0,
trigger_count = 0;
int count_footers = 0;
/* count indexes */
if (!error && tableinfo.hasindex)
{
sprintf(buf, "SELECT c2.relname\n"
"FROM pg_class c, pg_class c2, pg_index i\n"
"WHERE c.relname = '%s' AND c.oid = i.indrelid AND i.indexrelid = c2.oid\n"
"AND NOT i.indisunique ORDER BY c2.relname",
name);
result1 = PSQLexec(buf);
if (!result1)
error = true;
else
index_count = PQntuples(result1);
}
/* count primary keys */
if (!error && tableinfo.hasindex)
{
sprintf(buf, "SELECT c2.relname\n"
"FROM pg_class c, pg_class c2, pg_index i\n"
"WHERE c.relname = '%s' AND c.oid = i.indrelid AND i.indexrelid = c2.oid\n"
"AND i.indisprimary AND i.indisunique ORDER BY c2.relname",
name);
result5 = PSQLexec(buf);
if (!result5)
error = true;
else
primary_count = PQntuples(result5);
}
/* count unique constraints */
if (!error && tableinfo.hasindex)
{
sprintf(buf, "SELECT c2.relname\n"
"FROM pg_class c, pg_class c2, pg_index i\n"
"WHERE c.relname = '%s' AND c.oid = i.indrelid AND i.indexrelid = c2.oid\n"
"AND NOT i.indisprimary AND i.indisunique ORDER BY c2.relname",
name);
result6 = PSQLexec(buf);
if (!result6)
error = true;
else
unique_count = PQntuples(result6);
}
/* count table (and column) constraints */
if (!error && tableinfo.checks)
{
sprintf(buf, "SELECT rcsrc, rcname\n"
"FROM pg_relcheck r, pg_class c\n"
"WHERE c.relname='%s' AND c.oid = r.rcrelid",
name);
result2 = PSQLexec(buf);
if (!result2)
error = true;
else
constr_count = PQntuples(result2);
}
/* count rules */
if (!error && tableinfo.hasrules)
{
sprintf(buf,
"SELECT r.rulename\n"
"FROM pg_rewrite r, pg_class c\n"
"WHERE c.relname='%s' AND c.oid = r.ev_class",
name);
result3 = PSQLexec(buf);
if (!result3)
error = true;
else
rule_count = PQntuples(result3);
}
/* count triggers */
if (!error && tableinfo.hasrules)
{
sprintf(buf,
"SELECT t.tgname\n"
"FROM pg_trigger t, pg_class c\n"
"WHERE c.relname='%s' AND c.oid = t.tgrelid",
name);
result4 = PSQLexec(buf);
if (!result4)
error = true;
else
trigger_count = PQntuples(result4);
}
footers = xmalloc((index_count + primary_count + unique_count +
constr_count + rule_count + trigger_count + 1)
* sizeof(*footers));
/* print indexes */
for (i = 0; i < index_count; i++)
{
char *s = _("Indexes");
if (i == 0)
snprintf(buf, sizeof(buf), "%s: %s", s, PQgetvalue(result1, i, 0));
else
snprintf(buf, sizeof(buf), "%*s %s", (int)strlen(s), "", PQgetvalue(result1, i, 0));
if (i < index_count - 1)
strcat(buf, ",");
footers[count_footers++] = xstrdup(buf);
}
/* print primary keys */
for (i = 0; i < primary_count; i++)
{
char *s = _("Primary key");
if (i == 0)
snprintf(buf, sizeof(buf), "%s: %s", s, PQgetvalue(result5, i, 0));
else
snprintf(buf, sizeof(buf), "%*s %s", (int)strlen(s), "", PQgetvalue(result5, i, 0));
if (i < primary_count - 1)
strcat(buf, ",");
footers[count_footers++] = xstrdup(buf);
}
/* print unique constraints */
for (i = 0; i < unique_count; i++)
{
char *s = _("Unique keys");
if (i == 0)
snprintf(buf, sizeof(buf), "%s: %s", s, PQgetvalue(result6, i, 0));
else
snprintf(buf, sizeof(buf), "%*s %s", (int)strlen(s), "", PQgetvalue(result6, i, 0));
if (i < unique_count - 1)
strcat(buf, ",");
footers[count_footers++] = xstrdup(buf);
}
/* print constraints */
for (i = 0; i < constr_count; i++)
{
char *s = _("Check constraints");
if (i == 0)
snprintf(buf, sizeof(buf), _("%s: \"%s\" %s"), s,
PQgetvalue(result2, i, 1), PQgetvalue(result2, i, 0));
else
snprintf(buf, sizeof(buf), _("%*s \"%s\" %s"), (int)strlen(s), "",
PQgetvalue(result2, i, 1), PQgetvalue(result2, i, 0));
footers[count_footers++] = xstrdup(buf);
}
/* print rules */
for (i = 0; i < rule_count; i++)
{
char *s = _("Rules");
if (i == 0)
snprintf(buf, sizeof(buf), "%s: %s", s, PQgetvalue(result3, i, 0));
else
snprintf(buf, sizeof(buf), "%*s %s", (int)strlen(s), "", PQgetvalue(result3, i, 0));
if (i < rule_count - 1)
strcat(buf, ",");
footers[count_footers++] = xstrdup(buf);
}
/* print triggers */
for (i = 0; i < trigger_count; i++)
{
char *s = _("Triggers");
if (i == 0)
snprintf(buf, sizeof(buf), "%s: %s", s, PQgetvalue(result4, i, 0));
else
snprintf(buf, sizeof(buf), "%*s %s", (int)strlen(s), "", PQgetvalue(result4, i, 0));
if (i < trigger_count - 1)
strcat(buf, ",");
footers[count_footers++] = xstrdup(buf);
}
/* end of list marker */
footers[count_footers] = NULL;
PQclear(result1);
PQclear(result2);
PQclear(result3);
PQclear(result4);
PQclear(result5);
PQclear(result6);
}
if (!error)
printTable(title, headers,
(const char **) cells, (const char **) footers,
"llll", &myopt, pset.queryFout);
1999-11-04 23:14:30 +00:00
/* clean up */
free(title);
1999-11-04 23:14:30 +00:00
for (i = 0; i < PQntuples(res); i++)
{
if (tableinfo.relkind == 'r' || tableinfo.relkind == 'v')
free(cells[i * cols + 2]);
1999-11-04 23:14:30 +00:00
}
free(cells);
1999-11-04 23:14:30 +00:00
for (ptr = footers; footers && *ptr; ptr++)
free(*ptr);
free(footers);
1999-11-04 23:14:30 +00:00
PQclear(res);
return !error;
}
/*
* \du [user]
*
* Describes users, possibly based on a simplistic prefix search on the
* argument.
*/
bool
describeUsers (const char *name)
{
char buf[384 + REGEXP_CUTOFF];
PGresult *res;
printQueryOpt myopt = pset.popt;
snprintf(buf, sizeof(buf),
"SELECT u.usename AS \"%s\",\n"
" u.usesysid AS \"%s\",\n"
" CASE WHEN u.usesuper AND u.usecreatedb THEN CAST('%s' AS text)\n"
" WHEN u.usesuper THEN CAST('%s' AS text)\n"
" WHEN u.usecreatedb THEN CAST('%s' AS text)\n"
" ELSE CAST('' AS text)\n"
" END AS \"%s\"\n"
"FROM pg_user u\n",
_("User name"), _("User ID"),
_("superuser, create database"),
_("superuser"), _("create database"),
_("Attributes") );
if (name)
{
2001-05-27 21:50:50 +00:00
strcat(buf, "WHERE u.usename ~ '^");
strncat(buf, name, REGEXP_CUTOFF);
strcat(buf, "'\n");
}
strcat(buf, "ORDER BY 1;");
res = PSQLexec(buf);
if (!res)
return false;
myopt.nullPrint = NULL;
myopt.title = _("List of database users");
printQuery(res, &myopt, pset.queryFout);
PQclear(res);
return true;
}
/*
* listTables()
*
* handler for \d, \dt, etc.
*
* The infotype is an array of characters, specifying what info is desired:
* t - tables
* i - indexes
* v - views
* s - sequences
* S - systems tables (~ '^pg_')
* (any order of the above is fine)
*
* Note: For some reason it always happens to people that their tables have owners
* that are no longer in pg_user; consequently they wouldn't show up here. The code
* tries to fix this the painful way, hopefully outer joins will be done sometime.
*/
bool
listTables(const char *infotype, const char *name, bool desc)
{
1999-11-04 23:14:30 +00:00
bool showTables = strchr(infotype, 't') != NULL;
bool showIndexes = strchr(infotype, 'i') != NULL;
1999-11-04 23:14:30 +00:00
bool showViews = strchr(infotype, 'v') != NULL;
bool showSeq = strchr(infotype, 's') != NULL;
bool showSystem = strchr(infotype, 'S') != NULL;
char buf[3072 + 8 * REGEXP_CUTOFF];
1999-11-04 23:14:30 +00:00
PGresult *res;
printQueryOpt myopt = pset.popt;
1999-11-04 23:14:30 +00:00
if (showSystem && !(showSeq || showIndexes || showViews || showTables))
showTables = showViews = showSeq = true;
buf[0] = '\0';
1999-11-04 23:14:30 +00:00
snprintf(buf, sizeof(buf),
"SELECT c.relname as \"%s\",\n"
" CASE c.relkind WHEN 'r' THEN '%s' WHEN 'v' THEN '%s' WHEN 'i' THEN '%s' WHEN 'S' THEN '%s' WHEN 's' THEN '%s' END as \"%s\",\n"
" u.usename as \"%s\"",
_("Name"), _("table"), _("view"), _("index"), _("sequence"),
_("special"), _("Type"), _("Owner"));
if (desc)
snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
",\n obj_description(c.oid, 'pg_class') as \"%s\"",
_("Description"));
strcat(buf,
"\nFROM pg_class c LEFT JOIN pg_user u ON c.relowner = u.usesysid\n"
"WHERE c.relkind IN (");
if (showTables)
strcat(buf, "'r',");
1999-11-04 23:14:30 +00:00
if (showViews)
strcat(buf, "'v',");
if (showIndexes)
strcat(buf, "'i',");
if (showSeq)
strcat(buf, "'S',");
1999-11-04 23:14:30 +00:00
if (showSystem && showTables)
strcat(buf, "'s',");
strcat(buf, "''"); /* dummy */
strcat(buf, ")\n");
1999-11-04 23:14:30 +00:00
if (showSystem)
strcat(buf, " AND c.relname ~ '^pg_'\n");
else
strcat(buf, " AND c.relname !~ '^pg_'\n");
if (name)
{
strcat(buf, " AND c.relname ~ '^");
strncat(buf, name, REGEXP_CUTOFF);
strcat(buf, "'\n");
}
strcat(buf, "ORDER BY 1;");
res = PSQLexec(buf);
1999-11-04 23:14:30 +00:00
if (!res)
return false;
if (PQntuples(res) == 0 && !QUIET())
{
if (name)
fprintf(pset.queryFout, _("No matching relations found.\n"));
else
fprintf(pset.queryFout, _("No relations found.\n"));
}
1999-11-04 23:14:30 +00:00
else
{
myopt.nullPrint = NULL;
myopt.title = _("List of relations");
printQuery(res, &myopt, pset.queryFout);
1999-11-04 23:14:30 +00:00
}
1999-11-04 23:14:30 +00:00
PQclear(res);
return true;
}