]> granicus.if.org Git - postgresql/blob - src/bin/psql/describe.c
Run pgindent on 9.2 source tree in preparation for first 9.3
[postgresql] / src / bin / psql / describe.c
1 /*
2  * psql - the PostgreSQL interactive terminal
3  *
4  * Support for the various \d ("describe") commands.  Note that the current
5  * expectation is that all functions in this file will succeed when working
6  * with servers of versions 7.4 and up.  It's okay to omit irrelevant
7  * information for an old server, but not to fail outright.
8  *
9  * Copyright (c) 2000-2012, PostgreSQL Global Development Group
10  *
11  * src/bin/psql/describe.c
12  */
13 #include "postgres_fe.h"
14
15 #include <ctype.h>
16
17 #include "common.h"
18 #include "describe.h"
19 #include "dumputils.h"
20 #include "mbprint.h"
21 #include "print.h"
22 #include "settings.h"
23 #include "variables.h"
24
25
26 static bool describeOneTableDetails(const char *schemaname,
27                                                 const char *relationname,
28                                                 const char *oid,
29                                                 bool verbose);
30 static void add_tablespace_footer(printTableContent *const cont, char relkind,
31                                           Oid tablespace, const bool newline);
32 static void add_role_attribute(PQExpBuffer buf, const char *const str);
33 static bool listTSParsersVerbose(const char *pattern);
34 static bool describeOneTSParser(const char *oid, const char *nspname,
35                                         const char *prsname);
36 static bool listTSConfigsVerbose(const char *pattern);
37 static bool describeOneTSConfig(const char *oid, const char *nspname,
38                                         const char *cfgname,
39                                         const char *pnspname, const char *prsname);
40 static void printACLColumn(PQExpBuffer buf, const char *colname);
41 static bool listOneExtensionContents(const char *extname, const char *oid);
42
43
44 /*----------------
45  * Handlers for various slash commands displaying some sort of list
46  * of things in the database.
47  *
48  * Note: try to format the queries to look nice in -E output.
49  *----------------
50  */
51
52
53 /* \da
54  * Takes an optional regexp to select particular aggregates
55  */
56 bool
57 describeAggregates(const char *pattern, bool verbose, bool showSystem)
58 {
59         PQExpBufferData buf;
60         PGresult   *res;
61         printQueryOpt myopt = pset.popt;
62
63         initPQExpBuffer(&buf);
64
65         printfPQExpBuffer(&buf,
66                                           "SELECT n.nspname as \"%s\",\n"
67                                           "  p.proname AS \"%s\",\n"
68                                  "  pg_catalog.format_type(p.prorettype, NULL) AS \"%s\",\n",
69                                           gettext_noop("Schema"),
70                                           gettext_noop("Name"),
71                                           gettext_noop("Result data type"));
72
73         if (pset.sversion >= 80200)
74                 appendPQExpBuffer(&buf,
75                                                   "  CASE WHEN p.pronargs = 0\n"
76                                                   "    THEN CAST('*' AS pg_catalog.text)\n"
77                                                   "    ELSE\n"
78                                                   "    pg_catalog.array_to_string(ARRAY(\n"
79                                                   "      SELECT\n"
80                                  "        pg_catalog.format_type(p.proargtypes[s.i], NULL)\n"
81                                                   "      FROM\n"
82                                                   "        pg_catalog.generate_series(0, pg_catalog.array_upper(p.proargtypes, 1)) AS s(i)\n"
83                                                   "    ), ', ')\n"
84                                                   "  END AS \"%s\",\n",
85                                                   gettext_noop("Argument data types"));
86         else
87                 appendPQExpBuffer(&buf,
88                          "  pg_catalog.format_type(p.proargtypes[0], NULL) AS \"%s\",\n",
89                                                   gettext_noop("Argument data types"));
90
91         appendPQExpBuffer(&buf,
92                                  "  pg_catalog.obj_description(p.oid, 'pg_proc') as \"%s\"\n"
93                                           "FROM pg_catalog.pg_proc p\n"
94            "     LEFT JOIN pg_catalog.pg_namespace n ON n.oid = p.pronamespace\n"
95                                           "WHERE p.proisagg\n",
96                                           gettext_noop("Description"));
97
98         if (!showSystem && !pattern)
99                 appendPQExpBuffer(&buf, "      AND n.nspname <> 'pg_catalog'\n"
100                                                   "      AND n.nspname <> 'information_schema'\n");
101
102         processSQLNamePattern(pset.db, &buf, pattern, true, false,
103                                                   "n.nspname", "p.proname", NULL,
104                                                   "pg_catalog.pg_function_is_visible(p.oid)");
105
106         appendPQExpBuffer(&buf, "ORDER BY 1, 2, 4;");
107
108         res = PSQLexec(buf.data, false);
109         termPQExpBuffer(&buf);
110         if (!res)
111                 return false;
112
113         myopt.nullPrint = NULL;
114         myopt.title = _("List of aggregate functions");
115         myopt.translate_header = true;
116
117         printQuery(res, &myopt, pset.queryFout, pset.logfile);
118
119         PQclear(res);
120         return true;
121 }
122
123 /* \db
124  * Takes an optional regexp to select particular tablespaces
125  */
126 bool
127 describeTablespaces(const char *pattern, bool verbose)
128 {
129         PQExpBufferData buf;
130         PGresult   *res;
131         printQueryOpt myopt = pset.popt;
132
133         if (pset.sversion < 80000)
134         {
135                 fprintf(stderr, _("The server (version %d.%d) does not support tablespaces.\n"),
136                                 pset.sversion / 10000, (pset.sversion / 100) % 100);
137                 return true;
138         }
139
140         initPQExpBuffer(&buf);
141
142         if (pset.sversion >= 90200)
143                 printfPQExpBuffer(&buf,
144                                                   "SELECT spcname AS \"%s\",\n"
145                                                 "  pg_catalog.pg_get_userbyid(spcowner) AS \"%s\",\n"
146                                                 "  pg_catalog.pg_tablespace_location(oid) AS \"%s\"",
147                                                   gettext_noop("Name"),
148                                                   gettext_noop("Owner"),
149                                                   gettext_noop("Location"));
150         else
151                 printfPQExpBuffer(&buf,
152                                                   "SELECT spcname AS \"%s\",\n"
153                                                 "  pg_catalog.pg_get_userbyid(spcowner) AS \"%s\",\n"
154                                                   "  spclocation AS \"%s\"",
155                                                   gettext_noop("Name"),
156                                                   gettext_noop("Owner"),
157                                                   gettext_noop("Location"));
158
159         if (verbose)
160         {
161                 appendPQExpBuffer(&buf, ",\n  ");
162                 printACLColumn(&buf, "spcacl");
163         }
164
165         if (verbose && pset.sversion >= 80200)
166                 appendPQExpBuffer(&buf,
167                  ",\n  pg_catalog.shobj_description(oid, 'pg_tablespace') AS \"%s\"",
168                                                   gettext_noop("Description"));
169
170         appendPQExpBuffer(&buf,
171                                           "\nFROM pg_catalog.pg_tablespace\n");
172
173         processSQLNamePattern(pset.db, &buf, pattern, false, false,
174                                                   NULL, "spcname", NULL,
175                                                   NULL);
176
177         appendPQExpBuffer(&buf, "ORDER BY 1;");
178
179         res = PSQLexec(buf.data, false);
180         termPQExpBuffer(&buf);
181         if (!res)
182                 return false;
183
184         myopt.nullPrint = NULL;
185         myopt.title = _("List of tablespaces");
186         myopt.translate_header = true;
187
188         printQuery(res, &myopt, pset.queryFout, pset.logfile);
189
190         PQclear(res);
191         return true;
192 }
193
194
195 /* \df
196  * Takes an optional regexp to select particular functions.
197  *
198  * As with \d, you can specify the kinds of functions you want:
199  *
200  * a for aggregates
201  * n for normal
202  * t for trigger
203  * w for window
204  *
205  * and you can mix and match these in any order.
206  */
207 bool
208 describeFunctions(const char *functypes, const char *pattern, bool verbose, bool showSystem)
209 {
210         bool            showAggregate = strchr(functypes, 'a') != NULL;
211         bool            showNormal = strchr(functypes, 'n') != NULL;
212         bool            showTrigger = strchr(functypes, 't') != NULL;
213         bool            showWindow = strchr(functypes, 'w') != NULL;
214         bool            have_where;
215         PQExpBufferData buf;
216         PGresult   *res;
217         printQueryOpt myopt = pset.popt;
218         static const bool translate_columns[] = {false, false, false, false, true, true, false, false, false, false};
219
220         if (strlen(functypes) != strspn(functypes, "antwS+"))
221         {
222                 fprintf(stderr, _("\\df only takes [antwS+] as options\n"));
223                 return true;
224         }
225
226         if (showWindow && pset.sversion < 80400)
227         {
228                 fprintf(stderr, _("\\df does not take a \"w\" option with server version %d.%d\n"),
229                                 pset.sversion / 10000, (pset.sversion / 100) % 100);
230                 return true;
231         }
232
233         if (!showAggregate && !showNormal && !showTrigger && !showWindow)
234         {
235                 showAggregate = showNormal = showTrigger = true;
236                 if (pset.sversion >= 80400)
237                         showWindow = true;
238         }
239
240         initPQExpBuffer(&buf);
241
242         printfPQExpBuffer(&buf,
243                                           "SELECT n.nspname as \"%s\",\n"
244                                           "  p.proname as \"%s\",\n",
245                                           gettext_noop("Schema"),
246                                           gettext_noop("Name"));
247
248         if (pset.sversion >= 80400)
249                 appendPQExpBuffer(&buf,
250                                         "  pg_catalog.pg_get_function_result(p.oid) as \"%s\",\n"
251                                  "  pg_catalog.pg_get_function_arguments(p.oid) as \"%s\",\n"
252                                                   " CASE\n"
253                                                   "  WHEN p.proisagg THEN '%s'\n"
254                                                   "  WHEN p.proiswindow THEN '%s'\n"
255                                                   "  WHEN p.prorettype = 'pg_catalog.trigger'::pg_catalog.regtype THEN '%s'\n"
256                                                   "  ELSE '%s'\n"
257                                                   "END as \"%s\"",
258                                                   gettext_noop("Result data type"),
259                                                   gettext_noop("Argument data types"),
260                 /* translator: "agg" is short for "aggregate" */
261                                                   gettext_noop("agg"),
262                                                   gettext_noop("window"),
263                                                   gettext_noop("trigger"),
264                                                   gettext_noop("normal"),
265                                                   gettext_noop("Type"));
266         else if (pset.sversion >= 80100)
267                 appendPQExpBuffer(&buf,
268                                          "  CASE WHEN p.proretset THEN 'SETOF ' ELSE '' END ||\n"
269                                   "  pg_catalog.format_type(p.prorettype, NULL) as \"%s\",\n"
270                                                   "  CASE WHEN proallargtypes IS NOT NULL THEN\n"
271                                                   "    pg_catalog.array_to_string(ARRAY(\n"
272                                                   "      SELECT\n"
273                                                   "        CASE\n"
274                                                   "          WHEN p.proargmodes[s.i] = 'i' THEN ''\n"
275                                           "          WHEN p.proargmodes[s.i] = 'o' THEN 'OUT '\n"
276                                         "          WHEN p.proargmodes[s.i] = 'b' THEN 'INOUT '\n"
277                                  "          WHEN p.proargmodes[s.i] = 'v' THEN 'VARIADIC '\n"
278                                                   "        END ||\n"
279                                                   "        CASE\n"
280                          "          WHEN COALESCE(p.proargnames[s.i], '') = '' THEN ''\n"
281                                                   "          ELSE p.proargnames[s.i] || ' ' \n"
282                                                   "        END ||\n"
283                           "        pg_catalog.format_type(p.proallargtypes[s.i], NULL)\n"
284                                                   "      FROM\n"
285                                                   "        pg_catalog.generate_series(1, pg_catalog.array_upper(p.proallargtypes, 1)) AS s(i)\n"
286                                                   "    ), ', ')\n"
287                                                   "  ELSE\n"
288                                                   "    pg_catalog.array_to_string(ARRAY(\n"
289                                                   "      SELECT\n"
290                                                   "        CASE\n"
291                    "          WHEN COALESCE(p.proargnames[s.i+1], '') = '' THEN ''\n"
292                                                   "          ELSE p.proargnames[s.i+1] || ' '\n"
293                                                   "          END ||\n"
294                                  "        pg_catalog.format_type(p.proargtypes[s.i], NULL)\n"
295                                                   "      FROM\n"
296                                                   "        pg_catalog.generate_series(0, pg_catalog.array_upper(p.proargtypes, 1)) AS s(i)\n"
297                                                   "    ), ', ')\n"
298                                                   "  END AS \"%s\",\n"
299                                                   "  CASE\n"
300                                                   "    WHEN p.proisagg THEN '%s'\n"
301                                                   "    WHEN p.prorettype = 'pg_catalog.trigger'::pg_catalog.regtype THEN '%s'\n"
302                                                   "    ELSE '%s'\n"
303                                                   "  END AS \"%s\"",
304                                                   gettext_noop("Result data type"),
305                                                   gettext_noop("Argument data types"),
306                 /* translator: "agg" is short for "aggregate" */
307                                                   gettext_noop("agg"),
308                                                   gettext_noop("trigger"),
309                                                   gettext_noop("normal"),
310                                                   gettext_noop("Type"));
311         else
312                 appendPQExpBuffer(&buf,
313                                          "  CASE WHEN p.proretset THEN 'SETOF ' ELSE '' END ||\n"
314                                   "  pg_catalog.format_type(p.prorettype, NULL) as \"%s\",\n"
315                                         "  pg_catalog.oidvectortypes(p.proargtypes) as \"%s\",\n"
316                                                   "  CASE\n"
317                                                   "    WHEN p.proisagg THEN '%s'\n"
318                                                   "    WHEN p.prorettype = 'pg_catalog.trigger'::pg_catalog.regtype THEN '%s'\n"
319                                                   "    ELSE '%s'\n"
320                                                   "  END AS \"%s\"",
321                                                   gettext_noop("Result data type"),
322                                                   gettext_noop("Argument data types"),
323                 /* translator: "agg" is short for "aggregate" */
324                                                   gettext_noop("agg"),
325                                                   gettext_noop("trigger"),
326                                                   gettext_noop("normal"),
327                                                   gettext_noop("Type"));
328
329         if (verbose)
330                 appendPQExpBuffer(&buf,
331                                                   ",\n CASE\n"
332                                                   "  WHEN p.provolatile = 'i' THEN '%s'\n"
333                                                   "  WHEN p.provolatile = 's' THEN '%s'\n"
334                                                   "  WHEN p.provolatile = 'v' THEN '%s'\n"
335                                                   "END as \"%s\""
336                                    ",\n  pg_catalog.pg_get_userbyid(p.proowner) as \"%s\",\n"
337                                                   "  l.lanname as \"%s\",\n"
338                                                   "  p.prosrc as \"%s\",\n"
339                                   "  pg_catalog.obj_description(p.oid, 'pg_proc') as \"%s\"",
340                                                   gettext_noop("immutable"),
341                                                   gettext_noop("stable"),
342                                                   gettext_noop("volatile"),
343                                                   gettext_noop("Volatility"),
344                                                   gettext_noop("Owner"),
345                                                   gettext_noop("Language"),
346                                                   gettext_noop("Source code"),
347                                                   gettext_noop("Description"));
348
349         appendPQExpBuffer(&buf,
350                                           "\nFROM pg_catalog.pg_proc p"
351         "\n     LEFT JOIN pg_catalog.pg_namespace n ON n.oid = p.pronamespace\n");
352
353         if (verbose)
354                 appendPQExpBuffer(&buf,
355                    "     LEFT JOIN pg_catalog.pg_language l ON l.oid = p.prolang\n");
356
357         have_where = false;
358
359         /* filter by function type, if requested */
360         if (showNormal && showAggregate && showTrigger && showWindow)
361                  /* Do nothing */ ;
362         else if (showNormal)
363         {
364                 if (!showAggregate)
365                 {
366                         if (have_where)
367                                 appendPQExpBuffer(&buf, "      AND ");
368                         else
369                         {
370                                 appendPQExpBuffer(&buf, "WHERE ");
371                                 have_where = true;
372                         }
373                         appendPQExpBuffer(&buf, "NOT p.proisagg\n");
374                 }
375                 if (!showTrigger)
376                 {
377                         if (have_where)
378                                 appendPQExpBuffer(&buf, "      AND ");
379                         else
380                         {
381                                 appendPQExpBuffer(&buf, "WHERE ");
382                                 have_where = true;
383                         }
384                         appendPQExpBuffer(&buf, "p.prorettype <> 'pg_catalog.trigger'::pg_catalog.regtype\n");
385                 }
386                 if (!showWindow && pset.sversion >= 80400)
387                 {
388                         if (have_where)
389                                 appendPQExpBuffer(&buf, "      AND ");
390                         else
391                         {
392                                 appendPQExpBuffer(&buf, "WHERE ");
393                                 have_where = true;
394                         }
395                         appendPQExpBuffer(&buf, "NOT p.proiswindow\n");
396                 }
397         }
398         else
399         {
400                 bool            needs_or = false;
401
402                 appendPQExpBuffer(&buf, "WHERE (\n       ");
403                 have_where = true;
404                 /* Note: at least one of these must be true ... */
405                 if (showAggregate)
406                 {
407                         appendPQExpBuffer(&buf, "p.proisagg\n");
408                         needs_or = true;
409                 }
410                 if (showTrigger)
411                 {
412                         if (needs_or)
413                                 appendPQExpBuffer(&buf, "       OR ");
414                         appendPQExpBuffer(&buf,
415                                 "p.prorettype = 'pg_catalog.trigger'::pg_catalog.regtype\n");
416                         needs_or = true;
417                 }
418                 if (showWindow)
419                 {
420                         if (needs_or)
421                                 appendPQExpBuffer(&buf, "       OR ");
422                         appendPQExpBuffer(&buf, "p.proiswindow\n");
423                         needs_or = true;
424                 }
425                 appendPQExpBuffer(&buf, "      )\n");
426         }
427
428         processSQLNamePattern(pset.db, &buf, pattern, have_where, false,
429                                                   "n.nspname", "p.proname", NULL,
430                                                   "pg_catalog.pg_function_is_visible(p.oid)");
431
432         if (!showSystem && !pattern)
433                 appendPQExpBuffer(&buf, "      AND n.nspname <> 'pg_catalog'\n"
434                                                   "      AND n.nspname <> 'information_schema'\n");
435
436         appendPQExpBuffer(&buf, "ORDER BY 1, 2, 4;");
437
438         res = PSQLexec(buf.data, false);
439         termPQExpBuffer(&buf);
440         if (!res)
441                 return false;
442
443         myopt.nullPrint = NULL;
444         myopt.title = _("List of functions");
445         myopt.translate_header = true;
446         myopt.translate_columns = translate_columns;
447
448         printQuery(res, &myopt, pset.queryFout, pset.logfile);
449
450         PQclear(res);
451         return true;
452 }
453
454
455
456 /*
457  * \dT
458  * describe types
459  */
460 bool
461 describeTypes(const char *pattern, bool verbose, bool showSystem)
462 {
463         PQExpBufferData buf;
464         PGresult   *res;
465         printQueryOpt myopt = pset.popt;
466
467         initPQExpBuffer(&buf);
468
469         printfPQExpBuffer(&buf,
470                                           "SELECT n.nspname as \"%s\",\n"
471                                           "  pg_catalog.format_type(t.oid, NULL) AS \"%s\",\n",
472                                           gettext_noop("Schema"),
473                                           gettext_noop("Name"));
474         if (verbose)
475                 appendPQExpBuffer(&buf,
476                                                   "  t.typname AS \"%s\",\n"
477                                                   "  CASE WHEN t.typrelid != 0\n"
478                                                   "      THEN CAST('tuple' AS pg_catalog.text)\n"
479                                                   "    WHEN t.typlen < 0\n"
480                                                   "      THEN CAST('var' AS pg_catalog.text)\n"
481                                                   "    ELSE CAST(t.typlen AS pg_catalog.text)\n"
482                                                   "  END AS \"%s\",\n",
483                                                   gettext_noop("Internal name"),
484                                                   gettext_noop("Size"));
485         if (verbose && pset.sversion >= 80300)
486         {
487                 appendPQExpBuffer(&buf,
488                                                   "  pg_catalog.array_to_string(\n"
489                                                   "      ARRAY(\n"
490                                                   "                  SELECT e.enumlabel\n"
491                                                   "          FROM pg_catalog.pg_enum e\n"
492                                                   "          WHERE e.enumtypid = t.oid\n");
493
494                 if (pset.sversion >= 90100)
495                         appendPQExpBuffer(&buf,
496                                                           "          ORDER BY e.enumsortorder\n");
497                 else
498                         appendPQExpBuffer(&buf,
499                                                           "          ORDER BY e.oid\n");
500
501                 appendPQExpBuffer(&buf,
502                                                   "      ),\n"
503                                                   "      E'\\n'\n"
504                                                   "  ) AS \"%s\",\n",
505                                                   gettext_noop("Elements"));
506         }
507         if (verbose && pset.sversion >= 90200)
508         {
509                 printACLColumn(&buf, "t.typacl");
510                 appendPQExpBuffer(&buf, ",\n  ");
511         }
512
513         appendPQExpBuffer(&buf,
514                                 "  pg_catalog.obj_description(t.oid, 'pg_type') as \"%s\"\n",
515                                           gettext_noop("Description"));
516
517         appendPQExpBuffer(&buf, "FROM pg_catalog.pg_type t\n"
518          "     LEFT JOIN pg_catalog.pg_namespace n ON n.oid = t.typnamespace\n");
519
520         /*
521          * do not include complex types (typrelid!=0) unless they are standalone
522          * composite types
523          */
524         appendPQExpBuffer(&buf, "WHERE (t.typrelid = 0 ");
525         appendPQExpBuffer(&buf, "OR (SELECT c.relkind = 'c' FROM pg_catalog.pg_class c "
526                                           "WHERE c.oid = t.typrelid))\n");
527
528         /*
529          * do not include array types (before 8.3 we have to use the assumption
530          * that their names start with underscore)
531          */
532         if (pset.sversion >= 80300)
533                 appendPQExpBuffer(&buf, "  AND NOT EXISTS(SELECT 1 FROM pg_catalog.pg_type el WHERE el.oid = t.typelem AND el.typarray = t.oid)\n");
534         else
535                 appendPQExpBuffer(&buf, "  AND t.typname !~ '^_'\n");
536
537         if (!showSystem && !pattern)
538                 appendPQExpBuffer(&buf, "      AND n.nspname <> 'pg_catalog'\n"
539                                                   "      AND n.nspname <> 'information_schema'\n");
540
541         /* Match name pattern against either internal or external name */
542         processSQLNamePattern(pset.db, &buf, pattern, true, false,
543                                                   "n.nspname", "t.typname",
544                                                   "pg_catalog.format_type(t.oid, NULL)",
545                                                   "pg_catalog.pg_type_is_visible(t.oid)");
546
547         appendPQExpBuffer(&buf, "ORDER BY 1, 2;");
548
549         res = PSQLexec(buf.data, false);
550         termPQExpBuffer(&buf);
551         if (!res)
552                 return false;
553
554         myopt.nullPrint = NULL;
555         myopt.title = _("List of data types");
556         myopt.translate_header = true;
557
558         printQuery(res, &myopt, pset.queryFout, pset.logfile);
559
560         PQclear(res);
561         return true;
562 }
563
564
565 /* \do
566  */
567 bool
568 describeOperators(const char *pattern, bool showSystem)
569 {
570         PQExpBufferData buf;
571         PGresult   *res;
572         printQueryOpt myopt = pset.popt;
573
574         initPQExpBuffer(&buf);
575
576         /*
577          * Note: before Postgres 9.1, we did not assign comments to any built-in
578          * operators, preferring to let the comment on the underlying function
579          * suffice.  The coalesce() on the obj_description() calls below supports
580          * this convention by providing a fallback lookup of a comment on the
581          * operator's function.  As of 9.1 there is a policy that every built-in
582          * operator should have a comment; so the coalesce() is no longer
583          * necessary so far as built-in operators are concerned.  We keep it
584          * anyway, for now, because (1) third-party modules may still be following
585          * the old convention, and (2) we'd need to do it anyway when talking to a
586          * pre-9.1 server.
587          */
588
589         printfPQExpBuffer(&buf,
590                                           "SELECT n.nspname as \"%s\",\n"
591                                           "  o.oprname AS \"%s\",\n"
592                                           "  CASE WHEN o.oprkind='l' THEN NULL ELSE pg_catalog.format_type(o.oprleft, NULL) END AS \"%s\",\n"
593                                           "  CASE WHEN o.oprkind='r' THEN NULL ELSE pg_catalog.format_type(o.oprright, NULL) END AS \"%s\",\n"
594                                    "  pg_catalog.format_type(o.oprresult, NULL) AS \"%s\",\n"
595                          "  coalesce(pg_catalog.obj_description(o.oid, 'pg_operator'),\n"
596         "           pg_catalog.obj_description(o.oprcode, 'pg_proc')) AS \"%s\"\n"
597                                           "FROM pg_catalog.pg_operator o\n"
598           "     LEFT JOIN pg_catalog.pg_namespace n ON n.oid = o.oprnamespace\n",
599                                           gettext_noop("Schema"),
600                                           gettext_noop("Name"),
601                                           gettext_noop("Left arg type"),
602                                           gettext_noop("Right arg type"),
603                                           gettext_noop("Result type"),
604                                           gettext_noop("Description"));
605
606         if (!showSystem && !pattern)
607                 appendPQExpBuffer(&buf, "WHERE n.nspname <> 'pg_catalog'\n"
608                                                   "      AND n.nspname <> 'information_schema'\n");
609
610         processSQLNamePattern(pset.db, &buf, pattern, !showSystem && !pattern, true,
611                                                   "n.nspname", "o.oprname", NULL,
612                                                   "pg_catalog.pg_operator_is_visible(o.oid)");
613
614         appendPQExpBuffer(&buf, "ORDER BY 1, 2, 3, 4;");
615
616         res = PSQLexec(buf.data, false);
617         termPQExpBuffer(&buf);
618         if (!res)
619                 return false;
620
621         myopt.nullPrint = NULL;
622         myopt.title = _("List of operators");
623         myopt.translate_header = true;
624
625         printQuery(res, &myopt, pset.queryFout, pset.logfile);
626
627         PQclear(res);
628         return true;
629 }
630
631
632 /*
633  * listAllDbs
634  *
635  * for \l, \list, and -l switch
636  */
637 bool
638 listAllDbs(bool verbose)
639 {
640         PGresult   *res;
641         PQExpBufferData buf;
642         printQueryOpt myopt = pset.popt;
643
644         initPQExpBuffer(&buf);
645
646         printfPQExpBuffer(&buf,
647                                           "SELECT d.datname as \"%s\",\n"
648                                    "       pg_catalog.pg_get_userbyid(d.datdba) as \"%s\",\n"
649                         "       pg_catalog.pg_encoding_to_char(d.encoding) as \"%s\",\n",
650                                           gettext_noop("Name"),
651                                           gettext_noop("Owner"),
652                                           gettext_noop("Encoding"));
653         if (pset.sversion >= 80400)
654                 appendPQExpBuffer(&buf,
655                                                   "       d.datcollate as \"%s\",\n"
656                                                   "       d.datctype as \"%s\",\n",
657                                                   gettext_noop("Collate"),
658                                                   gettext_noop("Ctype"));
659         appendPQExpBuffer(&buf, "       ");
660         printACLColumn(&buf, "d.datacl");
661         if (verbose && pset.sversion >= 80200)
662                 appendPQExpBuffer(&buf,
663                                                   ",\n       CASE WHEN pg_catalog.has_database_privilege(d.datname, 'CONNECT')\n"
664                                                   "            THEN pg_catalog.pg_size_pretty(pg_catalog.pg_database_size(d.datname))\n"
665                                                   "            ELSE 'No Access'\n"
666                                                   "       END as \"%s\"",
667                                                   gettext_noop("Size"));
668         if (verbose && pset.sversion >= 80000)
669                 appendPQExpBuffer(&buf,
670                                                   ",\n       t.spcname as \"%s\"",
671                                                   gettext_noop("Tablespace"));
672         if (verbose && pset.sversion >= 80200)
673                 appendPQExpBuffer(&buf,
674                                                   ",\n       pg_catalog.shobj_description(d.oid, 'pg_database') as \"%s\"",
675                                                   gettext_noop("Description"));
676         appendPQExpBuffer(&buf,
677                                           "\nFROM pg_catalog.pg_database d\n");
678         if (verbose && pset.sversion >= 80000)
679                 appendPQExpBuffer(&buf,
680                    "  JOIN pg_catalog.pg_tablespace t on d.dattablespace = t.oid\n");
681         appendPQExpBuffer(&buf, "ORDER BY 1;");
682         res = PSQLexec(buf.data, false);
683         termPQExpBuffer(&buf);
684         if (!res)
685                 return false;
686
687         myopt.nullPrint = NULL;
688         myopt.title = _("List of databases");
689         myopt.translate_header = true;
690
691         printQuery(res, &myopt, pset.queryFout, pset.logfile);
692
693         PQclear(res);
694         return true;
695 }
696
697
698 /*
699  * List Tables' Grant/Revoke Permissions
700  * \z (now also \dp -- perhaps more mnemonic)
701  */
702 bool
703 permissionsList(const char *pattern)
704 {
705         PQExpBufferData buf;
706         PGresult   *res;
707         printQueryOpt myopt = pset.popt;
708         static const bool translate_columns[] = {false, false, true, false, false};
709
710         initPQExpBuffer(&buf);
711
712         /*
713          * we ignore indexes and toast tables since they have no meaningful rights
714          */
715         printfPQExpBuffer(&buf,
716                                           "SELECT n.nspname as \"%s\",\n"
717                                           "  c.relname as \"%s\",\n"
718                                           "  CASE c.relkind WHEN 'r' THEN '%s' WHEN 'v' THEN '%s' WHEN 'S' THEN '%s' WHEN 'f' THEN '%s' END as \"%s\",\n"
719                                           "  ",
720                                           gettext_noop("Schema"),
721                                           gettext_noop("Name"),
722            gettext_noop("table"), gettext_noop("view"), gettext_noop("sequence"),
723                                           gettext_noop("foreign table"),
724                                           gettext_noop("Type"));
725
726         printACLColumn(&buf, "c.relacl");
727
728         if (pset.sversion >= 80400)
729                 appendPQExpBuffer(&buf,
730                                                   ",\n  pg_catalog.array_to_string(ARRAY(\n"
731                                                   "    SELECT attname || E':\\n  ' || pg_catalog.array_to_string(attacl, E'\\n  ')\n"
732                                                   "    FROM pg_catalog.pg_attribute a\n"
733                                                   "    WHERE attrelid = c.oid AND NOT attisdropped AND attacl IS NOT NULL\n"
734                                                   "  ), E'\\n') AS \"%s\"",
735                                                   gettext_noop("Column access privileges"));
736
737         appendPQExpBuffer(&buf, "\nFROM pg_catalog.pg_class c\n"
738            "     LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace\n"
739                                           "WHERE c.relkind IN ('r', 'v', 'S', 'f')\n");
740
741         /*
742          * Unless a schema pattern is specified, we suppress system and temp
743          * tables, since they normally aren't very interesting from a permissions
744          * point of view.  You can see 'em by explicit request though, eg with \z
745          * pg_catalog.*
746          */
747         processSQLNamePattern(pset.db, &buf, pattern, true, false,
748                                                   "n.nspname", "c.relname", NULL,
749                         "n.nspname !~ '^pg_' AND pg_catalog.pg_table_is_visible(c.oid)");
750
751         appendPQExpBuffer(&buf, "ORDER BY 1, 2;");
752
753         res = PSQLexec(buf.data, false);
754         if (!res)
755         {
756                 termPQExpBuffer(&buf);
757                 return false;
758         }
759
760         myopt.nullPrint = NULL;
761         printfPQExpBuffer(&buf, _("Access privileges"));
762         myopt.title = buf.data;
763         myopt.translate_header = true;
764         myopt.translate_columns = translate_columns;
765
766         printQuery(res, &myopt, pset.queryFout, pset.logfile);
767
768         termPQExpBuffer(&buf);
769         PQclear(res);
770         return true;
771 }
772
773
774 /*
775  * \ddp
776  *
777  * List DefaultACLs.  The pattern can match either schema or role name.
778  */
779 bool
780 listDefaultACLs(const char *pattern)
781 {
782         PQExpBufferData buf;
783         PGresult   *res;
784         printQueryOpt myopt = pset.popt;
785         static const bool translate_columns[] = {false, false, true, false};
786
787         if (pset.sversion < 90000)
788         {
789                 fprintf(stderr, _("The server (version %d.%d) does not support altering default privileges.\n"),
790                                 pset.sversion / 10000, (pset.sversion / 100) % 100);
791                 return true;
792         }
793
794         initPQExpBuffer(&buf);
795
796         printfPQExpBuffer(&buf,
797                            "SELECT pg_catalog.pg_get_userbyid(d.defaclrole) AS \"%s\",\n"
798                                           "  n.nspname AS \"%s\",\n"
799                                           "  CASE d.defaclobjtype WHEN 'r' THEN '%s' WHEN 'S' THEN '%s' WHEN 'f' THEN '%s' END AS \"%s\",\n"
800                                           "  ",
801                                           gettext_noop("Owner"),
802                                           gettext_noop("Schema"),
803                                           gettext_noop("table"),
804                                           gettext_noop("sequence"),
805                                           gettext_noop("function"),
806                                           gettext_noop("Type"));
807
808         printACLColumn(&buf, "d.defaclacl");
809
810         appendPQExpBuffer(&buf, "\nFROM pg_catalog.pg_default_acl d\n"
811                                           "     LEFT JOIN pg_catalog.pg_namespace n ON n.oid = d.defaclnamespace\n");
812
813         processSQLNamePattern(pset.db, &buf, pattern, false, false,
814                                                   NULL,
815                                                   "n.nspname",
816                                                   "pg_catalog.pg_get_userbyid(d.defaclrole)",
817                                                   NULL);
818
819         appendPQExpBuffer(&buf, "ORDER BY 1, 2, 3;");
820
821         res = PSQLexec(buf.data, false);
822         if (!res)
823         {
824                 termPQExpBuffer(&buf);
825                 return false;
826         }
827
828         myopt.nullPrint = NULL;
829         printfPQExpBuffer(&buf, _("Default access privileges"));
830         myopt.title = buf.data;
831         myopt.translate_header = true;
832         myopt.translate_columns = translate_columns;
833
834         printQuery(res, &myopt, pset.queryFout, pset.logfile);
835
836         termPQExpBuffer(&buf);
837         PQclear(res);
838         return true;
839 }
840
841
842 /*
843  * Get object comments
844  *
845  * \dd [foo]
846  *
847  * Note: This command only lists comments for object types which do not have
848  * their comments displayed by their own backslash commands. The following
849  * types of objects will be displayed: constraint, operator class,
850  * operator family, rule, and trigger.
851  *
852  */
853 bool
854 objectDescription(const char *pattern, bool showSystem)
855 {
856         PQExpBufferData buf;
857         PGresult   *res;
858         printQueryOpt myopt = pset.popt;
859         static const bool translate_columns[] = {false, false, true, false};
860
861         initPQExpBuffer(&buf);
862
863         appendPQExpBuffer(&buf,
864                                           "SELECT DISTINCT tt.nspname AS \"%s\", tt.name AS \"%s\", tt.object AS \"%s\", d.description AS \"%s\"\n"
865                                           "FROM (\n",
866                                           gettext_noop("Schema"),
867                                           gettext_noop("Name"),
868                                           gettext_noop("Object"),
869                                           gettext_noop("Description"));
870
871         /* Constraint descriptions */
872         appendPQExpBuffer(&buf,
873                                           "  SELECT pgc.oid as oid, pgc.tableoid AS tableoid,\n"
874                                           "  n.nspname as nspname,\n"
875                                           "  CAST(pgc.conname AS pg_catalog.text) as name,"
876                                           "  CAST('%s' AS pg_catalog.text) as object\n"
877                                           "  FROM pg_catalog.pg_constraint pgc\n"
878                                           "    JOIN pg_catalog.pg_class c "
879                                           "ON c.oid = pgc.conrelid\n"
880                                           "    LEFT JOIN pg_catalog.pg_namespace n "
881                                           "    ON n.oid = c.relnamespace\n",
882                                           gettext_noop("constraint"));
883
884         if (!showSystem && !pattern)
885                 appendPQExpBuffer(&buf, "WHERE n.nspname <> 'pg_catalog'\n"
886                                                   "      AND n.nspname <> 'information_schema'\n");
887
888         processSQLNamePattern(pset.db, &buf, pattern, !showSystem && !pattern,
889                                                   false, "n.nspname", "pgc.conname", NULL,
890                                                   "pg_catalog.pg_table_is_visible(c.oid)");
891
892         /*
893          * pg_opclass.opcmethod only available in 8.3+
894          */
895         if (pset.sversion >= 80300)
896         {
897                 /* Operator class descriptions */
898                 appendPQExpBuffer(&buf,
899                                                   "UNION ALL\n"
900                                                   "  SELECT o.oid as oid, o.tableoid as tableoid,\n"
901                                                   "  n.nspname as nspname,\n"
902                                                   "  CAST(o.opcname AS pg_catalog.text) as name,\n"
903                                                   "  CAST('%s' AS pg_catalog.text) as object\n"
904                                                   "  FROM pg_catalog.pg_opclass o\n"
905                                                   "    JOIN pg_catalog.pg_am am ON "
906                                                   "o.opcmethod = am.oid\n"
907                                                   "    JOIN pg_catalog.pg_namespace n ON "
908                                                   "n.oid = o.opcnamespace\n",
909                                                   gettext_noop("operator class"));
910
911                 if (!showSystem && !pattern)
912                         appendPQExpBuffer(&buf, "      AND n.nspname <> 'pg_catalog'\n"
913                                                         "      AND n.nspname <> 'information_schema'\n");
914
915                 processSQLNamePattern(pset.db, &buf, pattern, true, false,
916                                                           "n.nspname", "o.opcname", NULL,
917                                                           "pg_catalog.pg_opclass_is_visible(o.oid)");
918         }
919
920         /*
921          * although operator family comments have been around since 8.3,
922          * pg_opfamily_is_visible is only available in 9.2+
923          */
924         if (pset.sversion >= 90200)
925         {
926                 /* Operator family descriptions */
927                 appendPQExpBuffer(&buf,
928                                                   "UNION ALL\n"
929                                            "  SELECT opf.oid as oid, opf.tableoid as tableoid,\n"
930                                                   "  n.nspname as nspname,\n"
931                                                   "  CAST(opf.opfname AS pg_catalog.text) AS name,\n"
932                                                   "  CAST('%s' AS pg_catalog.text) as object\n"
933                                                   "  FROM pg_catalog.pg_opfamily opf\n"
934                                                   "    JOIN pg_catalog.pg_am am "
935                                                   "ON opf.opfmethod = am.oid\n"
936                                                   "    JOIN pg_catalog.pg_namespace n "
937                                                   "ON opf.opfnamespace = n.oid\n",
938                                                   gettext_noop("operator family"));
939
940                 if (!showSystem && !pattern)
941                         appendPQExpBuffer(&buf, "      AND n.nspname <> 'pg_catalog'\n"
942                                                         "      AND n.nspname <> 'information_schema'\n");
943
944                 processSQLNamePattern(pset.db, &buf, pattern, true, false,
945                                                           "n.nspname", "opf.opfname", NULL,
946                                                           "pg_catalog.pg_opfamily_is_visible(opf.oid)");
947         }
948
949         /* Rule descriptions (ignore rules for views) */
950         appendPQExpBuffer(&buf,
951                                           "UNION ALL\n"
952                                           "  SELECT r.oid as oid, r.tableoid as tableoid,\n"
953                                           "  n.nspname as nspname,\n"
954                                           "  CAST(r.rulename AS pg_catalog.text) as name,"
955                                           "  CAST('%s' AS pg_catalog.text) as object\n"
956                                           "  FROM pg_catalog.pg_rewrite r\n"
957                                   "       JOIN pg_catalog.pg_class c ON c.oid = r.ev_class\n"
958          "       LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace\n"
959                                           "  WHERE r.rulename != '_RETURN'\n",
960                                           gettext_noop("rule"));
961
962         if (!showSystem && !pattern)
963                 appendPQExpBuffer(&buf, "      AND n.nspname <> 'pg_catalog'\n"
964                                                   "      AND n.nspname <> 'information_schema'\n");
965
966         processSQLNamePattern(pset.db, &buf, pattern, true, false,
967                                                   "n.nspname", "r.rulename", NULL,
968                                                   "pg_catalog.pg_table_is_visible(c.oid)");
969
970         /* Trigger descriptions */
971         appendPQExpBuffer(&buf,
972                                           "UNION ALL\n"
973                                           "  SELECT t.oid as oid, t.tableoid as tableoid,\n"
974                                           "  n.nspname as nspname,\n"
975                                           "  CAST(t.tgname AS pg_catalog.text) as name,"
976                                           "  CAST('%s' AS pg_catalog.text) as object\n"
977                                           "  FROM pg_catalog.pg_trigger t\n"
978                                    "       JOIN pg_catalog.pg_class c ON c.oid = t.tgrelid\n"
979         "       LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace\n",
980                                           gettext_noop("trigger"));
981
982         if (!showSystem && !pattern)
983                 appendPQExpBuffer(&buf, "WHERE n.nspname <> 'pg_catalog'\n"
984                                                   "      AND n.nspname <> 'information_schema'\n");
985
986         processSQLNamePattern(pset.db, &buf, pattern, !showSystem && !pattern, false,
987                                                   "n.nspname", "t.tgname", NULL,
988                                                   "pg_catalog.pg_table_is_visible(c.oid)");
989
990         appendPQExpBuffer(&buf,
991                                           ") AS tt\n"
992                                           "  JOIN pg_catalog.pg_description d ON (tt.oid = d.objoid AND tt.tableoid = d.classoid AND d.objsubid = 0)\n");
993
994         appendPQExpBuffer(&buf, "ORDER BY 1, 2, 3;");
995
996         res = PSQLexec(buf.data, false);
997         termPQExpBuffer(&buf);
998         if (!res)
999                 return false;
1000
1001         myopt.nullPrint = NULL;
1002         myopt.title = _("Object descriptions");
1003         myopt.translate_header = true;
1004         myopt.translate_columns = translate_columns;
1005
1006         printQuery(res, &myopt, pset.queryFout, pset.logfile);
1007
1008         PQclear(res);
1009         return true;
1010 }
1011
1012
1013 /*
1014  * describeTableDetails (for \d)
1015  *
1016  * This routine finds the tables to be displayed, and calls
1017  * describeOneTableDetails for each one.
1018  *
1019  * verbose: if true, this is \d+
1020  */
1021 bool
1022 describeTableDetails(const char *pattern, bool verbose, bool showSystem)
1023 {
1024         PQExpBufferData buf;
1025         PGresult   *res;
1026         int                     i;
1027
1028         initPQExpBuffer(&buf);
1029
1030         printfPQExpBuffer(&buf,
1031                                           "SELECT c.oid,\n"
1032                                           "  n.nspname,\n"
1033                                           "  c.relname\n"
1034                                           "FROM pg_catalog.pg_class c\n"
1035          "     LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace\n");
1036
1037         if (!showSystem && !pattern)
1038                 appendPQExpBuffer(&buf, "WHERE n.nspname <> 'pg_catalog'\n"
1039                                                   "      AND n.nspname <> 'information_schema'\n");
1040
1041         processSQLNamePattern(pset.db, &buf, pattern, !showSystem && !pattern, false,
1042                                                   "n.nspname", "c.relname", NULL,
1043                                                   "pg_catalog.pg_table_is_visible(c.oid)");
1044
1045         appendPQExpBuffer(&buf, "ORDER BY 2, 3;");
1046
1047         res = PSQLexec(buf.data, false);
1048         termPQExpBuffer(&buf);
1049         if (!res)
1050                 return false;
1051
1052         if (PQntuples(res) == 0)
1053         {
1054                 if (!pset.quiet)
1055                         fprintf(stderr, _("Did not find any relation named \"%s\".\n"),
1056                                         pattern);
1057                 PQclear(res);
1058                 return false;
1059         }
1060
1061         for (i = 0; i < PQntuples(res); i++)
1062         {
1063                 const char *oid;
1064                 const char *nspname;
1065                 const char *relname;
1066
1067                 oid = PQgetvalue(res, i, 0);
1068                 nspname = PQgetvalue(res, i, 1);
1069                 relname = PQgetvalue(res, i, 2);
1070
1071                 if (!describeOneTableDetails(nspname, relname, oid, verbose))
1072                 {
1073                         PQclear(res);
1074                         return false;
1075                 }
1076                 if (cancel_pressed)
1077                 {
1078                         PQclear(res);
1079                         return false;
1080                 }
1081         }
1082
1083         PQclear(res);
1084         return true;
1085 }
1086
1087 /*
1088  * describeOneTableDetails (for \d)
1089  *
1090  * Unfortunately, the information presented here is so complicated that it
1091  * cannot be done in a single query. So we have to assemble the printed table
1092  * by hand and pass it to the underlying printTable() function.
1093  */
1094 static bool
1095 describeOneTableDetails(const char *schemaname,
1096                                                 const char *relationname,
1097                                                 const char *oid,
1098                                                 bool verbose)
1099 {
1100         PQExpBufferData buf;
1101         PGresult   *res = NULL;
1102         printTableOpt myopt = pset.popt.topt;
1103         printTableContent cont;
1104         bool            printTableInitialized = false;
1105         int                     i;
1106         char       *view_def = NULL;
1107         char       *headers[9];
1108         char      **seq_values = NULL;
1109         char      **modifiers = NULL;
1110         char      **ptr;
1111         PQExpBufferData title;
1112         PQExpBufferData tmpbuf;
1113         int                     cols;
1114         int                     numrows = 0;
1115         struct
1116         {
1117                 int16           checks;
1118                 char            relkind;
1119                 bool            hasindex;
1120                 bool            hasrules;
1121                 bool            hastriggers;
1122                 bool            hasoids;
1123                 Oid                     tablespace;
1124                 char       *reloptions;
1125                 char       *reloftype;
1126                 char            relpersistence;
1127         }                       tableinfo;
1128         bool            show_modifiers = false;
1129         bool            retval;
1130
1131         retval = false;
1132
1133         myopt.default_footer = false;
1134         /* This output looks confusing in expanded mode. */
1135         myopt.expanded = false;
1136
1137         initPQExpBuffer(&buf);
1138         initPQExpBuffer(&title);
1139         initPQExpBuffer(&tmpbuf);
1140
1141         /* Get general table info */
1142         if (pset.sversion >= 90100)
1143         {
1144                 printfPQExpBuffer(&buf,
1145                           "SELECT c.relchecks, c.relkind, c.relhasindex, c.relhasrules, "
1146                                                   "c.relhastriggers, c.relhasoids, "
1147                                                   "%s, c.reltablespace, "
1148                                                   "CASE WHEN c.reloftype = 0 THEN '' ELSE c.reloftype::pg_catalog.regtype::pg_catalog.text END, "
1149                                                   "c.relpersistence\n"
1150                                                   "FROM pg_catalog.pg_class c\n "
1151                    "LEFT JOIN pg_catalog.pg_class tc ON (c.reltoastrelid = tc.oid)\n"
1152                                                   "WHERE c.oid = '%s';",
1153                                                   (verbose ?
1154                                                    "pg_catalog.array_to_string(c.reloptions || "
1155                                                    "array(select 'toast.' || x from pg_catalog.unnest(tc.reloptions) x), ', ')\n"
1156                                                    : "''"),
1157                                                   oid);
1158         }
1159         else if (pset.sversion >= 90000)
1160         {
1161                 printfPQExpBuffer(&buf,
1162                           "SELECT c.relchecks, c.relkind, c.relhasindex, c.relhasrules, "
1163                                                   "c.relhastriggers, c.relhasoids, "
1164                                                   "%s, c.reltablespace, "
1165                                                   "CASE WHEN c.reloftype = 0 THEN '' ELSE c.reloftype::pg_catalog.regtype::pg_catalog.text END\n"
1166                                                   "FROM pg_catalog.pg_class c\n "
1167                    "LEFT JOIN pg_catalog.pg_class tc ON (c.reltoastrelid = tc.oid)\n"
1168                                                   "WHERE c.oid = '%s';",
1169                                                   (verbose ?
1170                                                    "pg_catalog.array_to_string(c.reloptions || "
1171                                                    "array(select 'toast.' || x from pg_catalog.unnest(tc.reloptions) x), ', ')\n"
1172                                                    : "''"),
1173                                                   oid);
1174         }
1175         else if (pset.sversion >= 80400)
1176         {
1177                 printfPQExpBuffer(&buf,
1178                           "SELECT c.relchecks, c.relkind, c.relhasindex, c.relhasrules, "
1179                                                   "c.relhastriggers, c.relhasoids, "
1180                                                   "%s, c.reltablespace\n"
1181                                                   "FROM pg_catalog.pg_class c\n "
1182                    "LEFT JOIN pg_catalog.pg_class tc ON (c.reltoastrelid = tc.oid)\n"
1183                                                   "WHERE c.oid = '%s';",
1184                                                   (verbose ?
1185                                                    "pg_catalog.array_to_string(c.reloptions || "
1186                                                    "array(select 'toast.' || x from pg_catalog.unnest(tc.reloptions) x), ', ')\n"
1187                                                    : "''"),
1188                                                   oid);
1189         }
1190         else if (pset.sversion >= 80200)
1191         {
1192                 printfPQExpBuffer(&buf,
1193                                           "SELECT relchecks, relkind, relhasindex, relhasrules, "
1194                                                   "reltriggers <> 0, relhasoids, "
1195                                                   "%s, reltablespace\n"
1196                                                   "FROM pg_catalog.pg_class WHERE oid = '%s';",
1197                                                   (verbose ?
1198                                          "pg_catalog.array_to_string(reloptions, E', ')" : "''"),
1199                                                   oid);
1200         }
1201         else if (pset.sversion >= 80000)
1202         {
1203                 printfPQExpBuffer(&buf,
1204                                           "SELECT relchecks, relkind, relhasindex, relhasrules, "
1205                                                   "reltriggers <> 0, relhasoids, "
1206                                                   "'', reltablespace\n"
1207                                                   "FROM pg_catalog.pg_class WHERE oid = '%s';",
1208                                                   oid);
1209         }
1210         else
1211         {
1212                 printfPQExpBuffer(&buf,
1213                                           "SELECT relchecks, relkind, relhasindex, relhasrules, "
1214                                                   "reltriggers <> 0, relhasoids, "
1215                                                   "'', ''\n"
1216                                                   "FROM pg_catalog.pg_class WHERE oid = '%s';",
1217                                                   oid);
1218         }
1219
1220         res = PSQLexec(buf.data, false);
1221         if (!res)
1222                 goto error_return;
1223
1224         /* Did we get anything? */
1225         if (PQntuples(res) == 0)
1226         {
1227                 if (!pset.quiet)
1228                         fprintf(stderr, _("Did not find any relation with OID %s.\n"),
1229                                         oid);
1230                 goto error_return;
1231         }
1232
1233         tableinfo.checks = atoi(PQgetvalue(res, 0, 0));
1234         tableinfo.relkind = *(PQgetvalue(res, 0, 1));
1235         tableinfo.hasindex = strcmp(PQgetvalue(res, 0, 2), "t") == 0;
1236         tableinfo.hasrules = strcmp(PQgetvalue(res, 0, 3), "t") == 0;
1237         tableinfo.hastriggers = strcmp(PQgetvalue(res, 0, 4), "t") == 0;
1238         tableinfo.hasoids = strcmp(PQgetvalue(res, 0, 5), "t") == 0;
1239         tableinfo.reloptions = (pset.sversion >= 80200) ?
1240                 strdup(PQgetvalue(res, 0, 6)) : 0;
1241         tableinfo.tablespace = (pset.sversion >= 80000) ?
1242                 atooid(PQgetvalue(res, 0, 7)) : 0;
1243         tableinfo.reloftype = (pset.sversion >= 90000 && strcmp(PQgetvalue(res, 0, 8), "") != 0) ?
1244                 strdup(PQgetvalue(res, 0, 8)) : 0;
1245         tableinfo.relpersistence = (pset.sversion >= 90100 && strcmp(PQgetvalue(res, 0, 9), "") != 0) ?
1246                 PQgetvalue(res, 0, 9)[0] : 0;
1247         PQclear(res);
1248         res = NULL;
1249
1250         /*
1251          * If it's a sequence, fetch its values and store into an array that will
1252          * be used later.
1253          */
1254         if (tableinfo.relkind == 'S')
1255         {
1256                 printfPQExpBuffer(&buf, "SELECT * FROM %s", fmtId(schemaname));
1257                 /* must be separate because fmtId isn't reentrant */
1258                 appendPQExpBuffer(&buf, ".%s;", fmtId(relationname));
1259
1260                 res = PSQLexec(buf.data, false);
1261                 if (!res)
1262                         goto error_return;
1263
1264                 seq_values = pg_malloc((PQnfields(res) + 1) * sizeof(*seq_values));
1265
1266                 for (i = 0; i < PQnfields(res); i++)
1267                         seq_values[i] = pg_strdup(PQgetvalue(res, 0, i));
1268                 seq_values[i] = NULL;
1269
1270                 PQclear(res);
1271                 res = NULL;
1272         }
1273
1274         /*
1275          * Get column info
1276          *
1277          * You need to modify value of "firstvcol" which will be defined below if
1278          * you are adding column(s) preceding to verbose-only columns.
1279          */
1280         printfPQExpBuffer(&buf, "SELECT a.attname,");
1281         appendPQExpBuffer(&buf, "\n  pg_catalog.format_type(a.atttypid, a.atttypmod),"
1282                                           "\n  (SELECT substring(pg_catalog.pg_get_expr(d.adbin, d.adrelid) for 128)"
1283                                           "\n   FROM pg_catalog.pg_attrdef d"
1284                                           "\n   WHERE d.adrelid = a.attrelid AND d.adnum = a.attnum AND a.atthasdef),"
1285                                           "\n  a.attnotnull, a.attnum,");
1286         if (pset.sversion >= 90100)
1287                 appendPQExpBuffer(&buf, "\n  (SELECT c.collname FROM pg_catalog.pg_collation c, pg_catalog.pg_type t\n"
1288                                                   "   WHERE c.oid = a.attcollation AND t.oid = a.atttypid AND a.attcollation <> t.typcollation) AS attcollation");
1289         else
1290                 appendPQExpBuffer(&buf, "\n  NULL AS attcollation");
1291         if (tableinfo.relkind == 'i')
1292                 appendPQExpBuffer(&buf, ",\n  pg_catalog.pg_get_indexdef(a.attrelid, a.attnum, TRUE) AS indexdef");
1293         else
1294                 appendPQExpBuffer(&buf, ",\n  NULL AS indexdef");
1295         if (tableinfo.relkind == 'f' && pset.sversion >= 90200)
1296                 appendPQExpBuffer(&buf, ",\n  CASE WHEN attfdwoptions IS NULL THEN '' ELSE "
1297                                                   "  '(' || array_to_string(ARRAY(SELECT quote_ident(option_name) ||  ' ' || quote_literal(option_value)  FROM "
1298                                                   "  pg_options_to_table(attfdwoptions)), ', ') || ')' END AS attfdwoptions");
1299         else
1300                 appendPQExpBuffer(&buf, ",\n  NULL AS attfdwoptions");
1301         if (verbose)
1302         {
1303                 appendPQExpBuffer(&buf, ",\n  a.attstorage");
1304                 appendPQExpBuffer(&buf, ",\n  CASE WHEN a.attstattarget=-1 THEN NULL ELSE a.attstattarget END AS attstattarget");
1305
1306                 /*
1307                  * In 9.0+, we have column comments for: relations, views, composite
1308                  * types, and foreign tables (c.f. CommentObject() in comment.c).
1309                  */
1310                 if (tableinfo.relkind == 'r' || tableinfo.relkind == 'v' ||
1311                         tableinfo.relkind == 'f' || tableinfo.relkind == 'c')
1312                         appendPQExpBuffer(&buf, ", pg_catalog.col_description(a.attrelid, a.attnum)");
1313         }
1314
1315         appendPQExpBuffer(&buf, "\nFROM pg_catalog.pg_attribute a");
1316         appendPQExpBuffer(&buf, "\nWHERE a.attrelid = '%s' AND a.attnum > 0 AND NOT a.attisdropped", oid);
1317         appendPQExpBuffer(&buf, "\nORDER BY a.attnum;");
1318
1319         res = PSQLexec(buf.data, false);
1320         if (!res)
1321                 goto error_return;
1322         numrows = PQntuples(res);
1323
1324         /* Make title */
1325         switch (tableinfo.relkind)
1326         {
1327                 case 'r':
1328                         if (tableinfo.relpersistence == 'u')
1329                                 printfPQExpBuffer(&title, _("Unlogged table \"%s.%s\""),
1330                                                                   schemaname, relationname);
1331                         else
1332                                 printfPQExpBuffer(&title, _("Table \"%s.%s\""),
1333                                                                   schemaname, relationname);
1334                         break;
1335                 case 'v':
1336                         printfPQExpBuffer(&title, _("View \"%s.%s\""),
1337                                                           schemaname, relationname);
1338                         break;
1339                 case 'S':
1340                         printfPQExpBuffer(&title, _("Sequence \"%s.%s\""),
1341                                                           schemaname, relationname);
1342                         break;
1343                 case 'i':
1344                         if (tableinfo.relpersistence == 'u')
1345                                 printfPQExpBuffer(&title, _("Unlogged index \"%s.%s\""),
1346                                                                   schemaname, relationname);
1347                         else
1348                                 printfPQExpBuffer(&title, _("Index \"%s.%s\""),
1349                                                                   schemaname, relationname);
1350                         break;
1351                 case 's':
1352                         /* not used as of 8.2, but keep it for backwards compatibility */
1353                         printfPQExpBuffer(&title, _("Special relation \"%s.%s\""),
1354                                                           schemaname, relationname);
1355                         break;
1356                 case 't':
1357                         printfPQExpBuffer(&title, _("TOAST table \"%s.%s\""),
1358                                                           schemaname, relationname);
1359                         break;
1360                 case 'c':
1361                         printfPQExpBuffer(&title, _("Composite type \"%s.%s\""),
1362                                                           schemaname, relationname);
1363                         break;
1364                 case 'f':
1365                         printfPQExpBuffer(&title, _("Foreign table \"%s.%s\""),
1366                                                           schemaname, relationname);
1367                         break;
1368                 default:
1369                         /* untranslated unknown relkind */
1370                         printfPQExpBuffer(&title, "?%c? \"%s.%s\"",
1371                                                           tableinfo.relkind, schemaname, relationname);
1372                         break;
1373         }
1374
1375         /* Set the number of columns, and their names */
1376         headers[0] = gettext_noop("Column");
1377         headers[1] = gettext_noop("Type");
1378         cols = 2;
1379
1380         if (tableinfo.relkind == 'r' || tableinfo.relkind == 'v' ||
1381                 tableinfo.relkind == 'f' || tableinfo.relkind == 'c')
1382         {
1383                 show_modifiers = true;
1384                 headers[cols++] = gettext_noop("Modifiers");
1385                 modifiers = pg_malloc_zero((numrows + 1) * sizeof(*modifiers));
1386         }
1387
1388         if (tableinfo.relkind == 'S')
1389                 headers[cols++] = gettext_noop("Value");
1390
1391         if (tableinfo.relkind == 'i')
1392                 headers[cols++] = gettext_noop("Definition");
1393
1394         if (tableinfo.relkind == 'f' && pset.sversion >= 90200)
1395                 headers[cols++] = gettext_noop("FDW Options");
1396
1397         if (verbose)
1398         {
1399                 headers[cols++] = gettext_noop("Storage");
1400                 if (tableinfo.relkind == 'r' || tableinfo.relkind == 'f')
1401                         headers[cols++] = gettext_noop("Stats target");
1402                 /* Column comments, if the relkind supports this feature. */
1403                 if (tableinfo.relkind == 'r' || tableinfo.relkind == 'v' ||
1404                         tableinfo.relkind == 'c' || tableinfo.relkind == 'f')
1405                         headers[cols++] = gettext_noop("Description");
1406         }
1407
1408         printTableInit(&cont, &myopt, title.data, cols, numrows);
1409         printTableInitialized = true;
1410
1411         for (i = 0; i < cols; i++)
1412                 printTableAddHeader(&cont, headers[i], true, 'l');
1413
1414         /* Check if table is a view */
1415         if (tableinfo.relkind == 'v' && verbose)
1416         {
1417                 PGresult   *result;
1418
1419                 printfPQExpBuffer(&buf,
1420                          "SELECT pg_catalog.pg_get_viewdef('%s'::pg_catalog.oid, true);",
1421                                                   oid);
1422                 result = PSQLexec(buf.data, false);
1423                 if (!result)
1424                         goto error_return;
1425
1426                 if (PQntuples(result) > 0)
1427                         view_def = pg_strdup(PQgetvalue(result, 0, 0));
1428
1429                 PQclear(result);
1430         }
1431
1432         /* Generate table cells to be printed */
1433         for (i = 0; i < numrows; i++)
1434         {
1435                 /* Column */
1436                 printTableAddCell(&cont, PQgetvalue(res, i, 0), false, false);
1437
1438                 /* Type */
1439                 printTableAddCell(&cont, PQgetvalue(res, i, 1), false, false);
1440
1441                 /* Modifiers: collate, not null, default */
1442                 if (show_modifiers)
1443                 {
1444                         resetPQExpBuffer(&tmpbuf);
1445
1446                         if (!PQgetisnull(res, i, 5))
1447                         {
1448                                 if (tmpbuf.len > 0)
1449                                         appendPQExpBufferStr(&tmpbuf, " ");
1450                                 appendPQExpBuffer(&tmpbuf, _("collate %s"),
1451                                                                   PQgetvalue(res, i, 5));
1452                         }
1453
1454                         if (strcmp(PQgetvalue(res, i, 3), "t") == 0)
1455                         {
1456                                 if (tmpbuf.len > 0)
1457                                         appendPQExpBufferStr(&tmpbuf, " ");
1458                                 appendPQExpBufferStr(&tmpbuf, _("not null"));
1459                         }
1460
1461                         /* handle "default" here */
1462                         /* (note: above we cut off the 'default' string at 128) */
1463                         if (strlen(PQgetvalue(res, i, 2)) != 0)
1464                         {
1465                                 if (tmpbuf.len > 0)
1466                                         appendPQExpBufferStr(&tmpbuf, " ");
1467                                 /* translator: default values of column definitions */
1468                                 appendPQExpBuffer(&tmpbuf, _("default %s"),
1469                                                                   PQgetvalue(res, i, 2));
1470                         }
1471
1472                         modifiers[i] = pg_strdup(tmpbuf.data);
1473                         printTableAddCell(&cont, modifiers[i], false, false);
1474                 }
1475
1476                 /* Value: for sequences only */
1477                 if (tableinfo.relkind == 'S')
1478                         printTableAddCell(&cont, seq_values[i], false, false);
1479
1480                 /* Expression for index column */
1481                 if (tableinfo.relkind == 'i')
1482                         printTableAddCell(&cont, PQgetvalue(res, i, 6), false, false);
1483
1484                 /* FDW options for foreign table column, only for 9.2 or later */
1485                 if (tableinfo.relkind == 'f' && pset.sversion >= 90200)
1486                         printTableAddCell(&cont, PQgetvalue(res, i, 7), false, false);
1487
1488                 /* Storage and Description */
1489                 if (verbose)
1490                 {
1491                         int                     firstvcol = 8;
1492                         char       *storage = PQgetvalue(res, i, firstvcol);
1493
1494                         /* these strings are literal in our syntax, so not translated. */
1495                         printTableAddCell(&cont, (storage[0] == 'p' ? "plain" :
1496                                                                           (storage[0] == 'm' ? "main" :
1497                                                                            (storage[0] == 'x' ? "extended" :
1498                                                                                 (storage[0] == 'e' ? "external" :
1499                                                                                  "???")))),
1500                                                           false, false);
1501
1502                         /* Statistics target, if the relkind supports this feature */
1503                         if (tableinfo.relkind == 'r' || tableinfo.relkind == 'f')
1504                         {
1505                                 printTableAddCell(&cont, PQgetvalue(res, i, firstvcol + 1),
1506                                                                   false, false);
1507                         }
1508
1509                         /* Column comments, if the relkind supports this feature. */
1510                         if (tableinfo.relkind == 'r' || tableinfo.relkind == 'v' ||
1511                                 tableinfo.relkind == 'c' || tableinfo.relkind == 'f')
1512                                 printTableAddCell(&cont, PQgetvalue(res, i, firstvcol + 2),
1513                                                                   false, false);
1514                 }
1515         }
1516
1517         /* Make footers */
1518         if (tableinfo.relkind == 'i')
1519         {
1520                 /* Footer information about an index */
1521                 PGresult   *result;
1522
1523                 printfPQExpBuffer(&buf,
1524                                  "SELECT i.indisunique, i.indisprimary, i.indisclustered, ");
1525                 if (pset.sversion >= 80200)
1526                         appendPQExpBuffer(&buf, "i.indisvalid,\n");
1527                 else
1528                         appendPQExpBuffer(&buf, "true AS indisvalid,\n");
1529                 if (pset.sversion >= 90000)
1530                         appendPQExpBuffer(&buf,
1531                                                           "  (NOT i.indimmediate) AND "
1532                                                         "EXISTS (SELECT 1 FROM pg_catalog.pg_constraint "
1533                                                           "WHERE conrelid = i.indrelid AND "
1534                                                           "conindid = i.indexrelid AND "
1535                                                           "contype IN ('p','u','x') AND "
1536                                                           "condeferrable) AS condeferrable,\n"
1537                                                           "  (NOT i.indimmediate) AND "
1538                                                         "EXISTS (SELECT 1 FROM pg_catalog.pg_constraint "
1539                                                           "WHERE conrelid = i.indrelid AND "
1540                                                           "conindid = i.indexrelid AND "
1541                                                           "contype IN ('p','u','x') AND "
1542                                                           "condeferred) AS condeferred,\n");
1543                 else
1544                         appendPQExpBuffer(&buf,
1545                                                 "  false AS condeferrable, false AS condeferred,\n");
1546                 appendPQExpBuffer(&buf, "  a.amname, c2.relname, "
1547                                           "pg_catalog.pg_get_expr(i.indpred, i.indrelid, true)\n"
1548                                                   "FROM pg_catalog.pg_index i, pg_catalog.pg_class c, pg_catalog.pg_class c2, pg_catalog.pg_am a\n"
1549                   "WHERE i.indexrelid = c.oid AND c.oid = '%s' AND c.relam = a.oid\n"
1550                                                   "AND i.indrelid = c2.oid;",
1551                                                   oid);
1552
1553                 result = PSQLexec(buf.data, false);
1554                 if (!result)
1555                         goto error_return;
1556                 else if (PQntuples(result) != 1)
1557                 {
1558                         PQclear(result);
1559                         goto error_return;
1560                 }
1561                 else
1562                 {
1563                         char       *indisunique = PQgetvalue(result, 0, 0);
1564                         char       *indisprimary = PQgetvalue(result, 0, 1);
1565                         char       *indisclustered = PQgetvalue(result, 0, 2);
1566                         char       *indisvalid = PQgetvalue(result, 0, 3);
1567                         char       *deferrable = PQgetvalue(result, 0, 4);
1568                         char       *deferred = PQgetvalue(result, 0, 5);
1569                         char       *indamname = PQgetvalue(result, 0, 6);
1570                         char       *indtable = PQgetvalue(result, 0, 7);
1571                         char       *indpred = PQgetvalue(result, 0, 8);
1572
1573                         if (strcmp(indisprimary, "t") == 0)
1574                                 printfPQExpBuffer(&tmpbuf, _("primary key, "));
1575                         else if (strcmp(indisunique, "t") == 0)
1576                                 printfPQExpBuffer(&tmpbuf, _("unique, "));
1577                         else
1578                                 resetPQExpBuffer(&tmpbuf);
1579                         appendPQExpBuffer(&tmpbuf, "%s, ", indamname);
1580
1581                         /* we assume here that index and table are in same schema */
1582                         appendPQExpBuffer(&tmpbuf, _("for table \"%s.%s\""),
1583                                                           schemaname, indtable);
1584
1585                         if (strlen(indpred))
1586                                 appendPQExpBuffer(&tmpbuf, _(", predicate (%s)"), indpred);
1587
1588                         if (strcmp(indisclustered, "t") == 0)
1589                                 appendPQExpBuffer(&tmpbuf, _(", clustered"));
1590
1591                         if (strcmp(indisvalid, "t") != 0)
1592                                 appendPQExpBuffer(&tmpbuf, _(", invalid"));
1593
1594                         if (strcmp(deferrable, "t") == 0)
1595                                 appendPQExpBuffer(&tmpbuf, _(", deferrable"));
1596
1597                         if (strcmp(deferred, "t") == 0)
1598                                 appendPQExpBuffer(&tmpbuf, _(", initially deferred"));
1599
1600                         printTableAddFooter(&cont, tmpbuf.data);
1601                         add_tablespace_footer(&cont, tableinfo.relkind,
1602                                                                   tableinfo.tablespace, true);
1603                 }
1604
1605                 PQclear(result);
1606         }
1607         else if (view_def)
1608         {
1609                 PGresult   *result = NULL;
1610
1611                 /* Footer information about a view */
1612                 printTableAddFooter(&cont, _("View definition:"));
1613                 printTableAddFooter(&cont, view_def);
1614
1615                 /* print rules */
1616                 if (tableinfo.hasrules)
1617                 {
1618                         printfPQExpBuffer(&buf,
1619                                                           "SELECT r.rulename, trim(trailing ';' from pg_catalog.pg_get_ruledef(r.oid, true))\n"
1620                                                           "FROM pg_catalog.pg_rewrite r\n"
1621                         "WHERE r.ev_class = '%s' AND r.rulename != '_RETURN' ORDER BY 1;",
1622                                                           oid);
1623                         result = PSQLexec(buf.data, false);
1624                         if (!result)
1625                                 goto error_return;
1626
1627                         if (PQntuples(result) > 0)
1628                         {
1629                                 printTableAddFooter(&cont, _("Rules:"));
1630                                 for (i = 0; i < PQntuples(result); i++)
1631                                 {
1632                                         const char *ruledef;
1633
1634                                         /* Everything after "CREATE RULE" is echoed verbatim */
1635                                         ruledef = PQgetvalue(result, i, 1);
1636                                         ruledef += 12;
1637
1638                                         printfPQExpBuffer(&buf, " %s", ruledef);
1639                                         printTableAddFooter(&cont, buf.data);
1640                                 }
1641                         }
1642                         PQclear(result);
1643                 }
1644         }
1645         else if (tableinfo.relkind == 'S')
1646         {
1647                 /* Footer information about a sequence */
1648                 PGresult   *result = NULL;
1649
1650                 /* Get the column that owns this sequence */
1651                 printfPQExpBuffer(&buf, "SELECT pg_catalog.quote_ident(nspname) || '.' ||"
1652                                                   "\n   pg_catalog.quote_ident(relname) || '.' ||"
1653                                                   "\n   pg_catalog.quote_ident(attname)"
1654                                                   "\nFROM pg_catalog.pg_class c"
1655                                         "\nINNER JOIN pg_catalog.pg_depend d ON c.oid=d.refobjid"
1656                          "\nINNER JOIN pg_catalog.pg_namespace n ON n.oid=c.relnamespace"
1657                                                   "\nINNER JOIN pg_catalog.pg_attribute a ON ("
1658                                                   "\n a.attrelid=c.oid AND"
1659                                                   "\n a.attnum=d.refobjsubid)"
1660                            "\nWHERE d.classid='pg_catalog.pg_class'::pg_catalog.regclass"
1661                          "\n AND d.refclassid='pg_catalog.pg_class'::pg_catalog.regclass"
1662                                                   "\n AND d.objid=%s"
1663                                                   "\n AND d.deptype='a'",
1664                                                   oid);
1665
1666                 result = PSQLexec(buf.data, false);
1667                 if (!result)
1668                         goto error_return;
1669                 else if (PQntuples(result) == 1)
1670                 {
1671                         printfPQExpBuffer(&buf, _("Owned by: %s"),
1672                                                           PQgetvalue(result, 0, 0));
1673                         printTableAddFooter(&cont, buf.data);
1674                 }
1675
1676                 /*
1677                  * If we get no rows back, don't show anything (obviously). We should
1678                  * never get more than one row back, but if we do, just ignore it and
1679                  * don't print anything.
1680                  */
1681                 PQclear(result);
1682         }
1683         else if (tableinfo.relkind == 'r' || tableinfo.relkind == 'f')
1684         {
1685                 /* Footer information about a table */
1686                 PGresult   *result = NULL;
1687                 int                     tuples = 0;
1688
1689                 /* print indexes */
1690                 if (tableinfo.hasindex)
1691                 {
1692                         printfPQExpBuffer(&buf,
1693                                                           "SELECT c2.relname, i.indisprimary, i.indisunique, i.indisclustered, ");
1694                         if (pset.sversion >= 80200)
1695                                 appendPQExpBuffer(&buf, "i.indisvalid, ");
1696                         else
1697                                 appendPQExpBuffer(&buf, "true as indisvalid, ");
1698                         appendPQExpBuffer(&buf, "pg_catalog.pg_get_indexdef(i.indexrelid, 0, true),\n  ");
1699                         if (pset.sversion >= 90000)
1700                                 appendPQExpBuffer(&buf,
1701                                                    "pg_catalog.pg_get_constraintdef(con.oid, true), "
1702                                                                   "contype, condeferrable, condeferred");
1703                         else
1704                                 appendPQExpBuffer(&buf,
1705                                                                   "null AS constraintdef, null AS contype, "
1706                                                          "false AS condeferrable, false AS condeferred");
1707                         if (pset.sversion >= 80000)
1708                                 appendPQExpBuffer(&buf, ", c2.reltablespace");
1709                         appendPQExpBuffer(&buf,
1710                                                           "\nFROM pg_catalog.pg_class c, pg_catalog.pg_class c2, pg_catalog.pg_index i\n");
1711                         if (pset.sversion >= 90000)
1712                                 appendPQExpBuffer(&buf,
1713                                                                   "  LEFT JOIN pg_catalog.pg_constraint con ON (conrelid = i.indrelid AND conindid = i.indexrelid AND contype IN ('p','u','x'))\n");
1714                         appendPQExpBuffer(&buf,
1715                                                           "WHERE c.oid = '%s' AND c.oid = i.indrelid AND i.indexrelid = c2.oid\n"
1716                          "ORDER BY i.indisprimary DESC, i.indisunique DESC, c2.relname;",
1717                                                           oid);
1718                         result = PSQLexec(buf.data, false);
1719                         if (!result)
1720                                 goto error_return;
1721                         else
1722                                 tuples = PQntuples(result);
1723
1724                         if (tuples > 0)
1725                         {
1726                                 printTableAddFooter(&cont, _("Indexes:"));
1727                                 for (i = 0; i < tuples; i++)
1728                                 {
1729                                         /* untranslated index name */
1730                                         printfPQExpBuffer(&buf, "    \"%s\"",
1731                                                                           PQgetvalue(result, i, 0));
1732
1733                                         /* If exclusion constraint, print the constraintdef */
1734                                         if (strcmp(PQgetvalue(result, i, 7), "x") == 0)
1735                                         {
1736                                                 appendPQExpBuffer(&buf, " %s",
1737                                                                                   PQgetvalue(result, i, 6));
1738                                         }
1739                                         else
1740                                         {
1741                                                 const char *indexdef;
1742                                                 const char *usingpos;
1743
1744                                                 /* Label as primary key or unique (but not both) */
1745                                                 if (strcmp(PQgetvalue(result, i, 1), "t") == 0)
1746                                                         appendPQExpBuffer(&buf, " PRIMARY KEY,");
1747                                                 else if (strcmp(PQgetvalue(result, i, 2), "t") == 0)
1748                                                 {
1749                                                         if (strcmp(PQgetvalue(result, i, 7), "u") == 0)
1750                                                                 appendPQExpBuffer(&buf, " UNIQUE CONSTRAINT,");
1751                                                         else
1752                                                                 appendPQExpBuffer(&buf, " UNIQUE,");
1753                                                 }
1754
1755                                                 /* Everything after "USING" is echoed verbatim */
1756                                                 indexdef = PQgetvalue(result, i, 5);
1757                                                 usingpos = strstr(indexdef, " USING ");
1758                                                 if (usingpos)
1759                                                         indexdef = usingpos + 7;
1760                                                 appendPQExpBuffer(&buf, " %s", indexdef);
1761
1762                                                 /* Need these for deferrable PK/UNIQUE indexes */
1763                                                 if (strcmp(PQgetvalue(result, i, 8), "t") == 0)
1764                                                         appendPQExpBuffer(&buf, " DEFERRABLE");
1765
1766                                                 if (strcmp(PQgetvalue(result, i, 9), "t") == 0)
1767                                                         appendPQExpBuffer(&buf, " INITIALLY DEFERRED");
1768                                         }
1769
1770                                         /* Add these for all cases */
1771                                         if (strcmp(PQgetvalue(result, i, 3), "t") == 0)
1772                                                 appendPQExpBuffer(&buf, " CLUSTER");
1773
1774                                         if (strcmp(PQgetvalue(result, i, 4), "t") != 0)
1775                                                 appendPQExpBuffer(&buf, " INVALID");
1776
1777                                         printTableAddFooter(&cont, buf.data);
1778
1779                                         /* Print tablespace of the index on the same line */
1780                                         if (pset.sversion >= 80000)
1781                                                 add_tablespace_footer(&cont, 'i',
1782                                                                                    atooid(PQgetvalue(result, i, 10)),
1783                                                                                           false);
1784                                 }
1785                         }
1786                         PQclear(result);
1787                 }
1788
1789                 /* print table (and column) check constraints */
1790                 if (tableinfo.checks)
1791                 {
1792                         printfPQExpBuffer(&buf,
1793                                                           "SELECT r.conname, "
1794                                                           "pg_catalog.pg_get_constraintdef(r.oid, true)\n"
1795                                                           "FROM pg_catalog.pg_constraint r\n"
1796                                                           "WHERE r.conrelid = '%s' AND r.contype = 'c'\n"
1797                                                           "ORDER BY 1;",
1798                                                           oid);
1799                         result = PSQLexec(buf.data, false);
1800                         if (!result)
1801                                 goto error_return;
1802                         else
1803                                 tuples = PQntuples(result);
1804
1805                         if (tuples > 0)
1806                         {
1807                                 printTableAddFooter(&cont, _("Check constraints:"));
1808                                 for (i = 0; i < tuples; i++)
1809                                 {
1810                                         /* untranslated contraint name and def */
1811                                         printfPQExpBuffer(&buf, "    \"%s\" %s",
1812                                                                           PQgetvalue(result, i, 0),
1813                                                                           PQgetvalue(result, i, 1));
1814
1815                                         printTableAddFooter(&cont, buf.data);
1816                                 }
1817                         }
1818                         PQclear(result);
1819                 }
1820
1821                 /* print foreign-key constraints (there are none if no triggers) */
1822                 if (tableinfo.hastriggers)
1823                 {
1824                         printfPQExpBuffer(&buf,
1825                                                           "SELECT conname,\n"
1826                                  "  pg_catalog.pg_get_constraintdef(r.oid, true) as condef\n"
1827                                                           "FROM pg_catalog.pg_constraint r\n"
1828                                    "WHERE r.conrelid = '%s' AND r.contype = 'f' ORDER BY 1;",
1829                                                           oid);
1830                         result = PSQLexec(buf.data, false);
1831                         if (!result)
1832                                 goto error_return;
1833                         else
1834                                 tuples = PQntuples(result);
1835
1836                         if (tuples > 0)
1837                         {
1838                                 printTableAddFooter(&cont, _("Foreign-key constraints:"));
1839                                 for (i = 0; i < tuples; i++)
1840                                 {
1841                                         /* untranslated constraint name and def */
1842                                         printfPQExpBuffer(&buf, "    \"%s\" %s",
1843                                                                           PQgetvalue(result, i, 0),
1844                                                                           PQgetvalue(result, i, 1));
1845
1846                                         printTableAddFooter(&cont, buf.data);
1847                                 }
1848                         }
1849                         PQclear(result);
1850                 }
1851
1852                 /* print incoming foreign-key references (none if no triggers) */
1853                 if (tableinfo.hastriggers)
1854                 {
1855                         printfPQExpBuffer(&buf,
1856                                                    "SELECT conname, conrelid::pg_catalog.regclass,\n"
1857                                  "  pg_catalog.pg_get_constraintdef(c.oid, true) as condef\n"
1858                                                           "FROM pg_catalog.pg_constraint c\n"
1859                                   "WHERE c.confrelid = '%s' AND c.contype = 'f' ORDER BY 1;",
1860                                                           oid);
1861                         result = PSQLexec(buf.data, false);
1862                         if (!result)
1863                                 goto error_return;
1864                         else
1865                                 tuples = PQntuples(result);
1866
1867                         if (tuples > 0)
1868                         {
1869                                 printTableAddFooter(&cont, _("Referenced by:"));
1870                                 for (i = 0; i < tuples; i++)
1871                                 {
1872                                         printfPQExpBuffer(&buf, "    TABLE \"%s\" CONSTRAINT \"%s\" %s",
1873                                                                           PQgetvalue(result, i, 1),
1874                                                                           PQgetvalue(result, i, 0),
1875                                                                           PQgetvalue(result, i, 2));
1876
1877                                         printTableAddFooter(&cont, buf.data);
1878                                 }
1879                         }
1880                         PQclear(result);
1881                 }
1882
1883                 /* print rules */
1884                 if (tableinfo.hasrules)
1885                 {
1886                         if (pset.sversion >= 80300)
1887                         {
1888                                 printfPQExpBuffer(&buf,
1889                                                                   "SELECT r.rulename, trim(trailing ';' from pg_catalog.pg_get_ruledef(r.oid, true)), "
1890                                                                   "ev_enabled\n"
1891                                                                   "FROM pg_catalog.pg_rewrite r\n"
1892                                                                   "WHERE r.ev_class = '%s' ORDER BY 1;",
1893                                                                   oid);
1894                         }
1895                         else
1896                         {
1897                                 printfPQExpBuffer(&buf,
1898                                                                   "SELECT r.rulename, trim(trailing ';' from pg_catalog.pg_get_ruledef(r.oid, true)), "
1899                                                                   "'O'::char AS ev_enabled\n"
1900                                                                   "FROM pg_catalog.pg_rewrite r\n"
1901                                                                   "WHERE r.ev_class = '%s' ORDER BY 1;",
1902                                                                   oid);
1903                         }
1904                         result = PSQLexec(buf.data, false);
1905                         if (!result)
1906                                 goto error_return;
1907                         else
1908                                 tuples = PQntuples(result);
1909
1910                         if (tuples > 0)
1911                         {
1912                                 bool            have_heading;
1913                                 int                     category;
1914
1915                                 for (category = 0; category < 4; category++)
1916                                 {
1917                                         have_heading = false;
1918
1919                                         for (i = 0; i < tuples; i++)
1920                                         {
1921                                                 const char *ruledef;
1922                                                 bool            list_rule = false;
1923
1924                                                 switch (category)
1925                                                 {
1926                                                         case 0:
1927                                                                 if (*PQgetvalue(result, i, 2) == 'O')
1928                                                                         list_rule = true;
1929                                                                 break;
1930                                                         case 1:
1931                                                                 if (*PQgetvalue(result, i, 2) == 'D')
1932                                                                         list_rule = true;
1933                                                                 break;
1934                                                         case 2:
1935                                                                 if (*PQgetvalue(result, i, 2) == 'A')
1936                                                                         list_rule = true;
1937                                                                 break;
1938                                                         case 3:
1939                                                                 if (*PQgetvalue(result, i, 2) == 'R')
1940                                                                         list_rule = true;
1941                                                                 break;
1942                                                 }
1943                                                 if (!list_rule)
1944                                                         continue;
1945
1946                                                 if (!have_heading)
1947                                                 {
1948                                                         switch (category)
1949                                                         {
1950                                                                 case 0:
1951                                                                         printfPQExpBuffer(&buf, _("Rules:"));
1952                                                                         break;
1953                                                                 case 1:
1954                                                                         printfPQExpBuffer(&buf, _("Disabled rules:"));
1955                                                                         break;
1956                                                                 case 2:
1957                                                                         printfPQExpBuffer(&buf, _("Rules firing always:"));
1958                                                                         break;
1959                                                                 case 3:
1960                                                                         printfPQExpBuffer(&buf, _("Rules firing on replica only:"));
1961                                                                         break;
1962                                                         }
1963                                                         printTableAddFooter(&cont, buf.data);
1964                                                         have_heading = true;
1965                                                 }
1966
1967                                                 /* Everything after "CREATE RULE" is echoed verbatim */
1968                                                 ruledef = PQgetvalue(result, i, 1);
1969                                                 ruledef += 12;
1970                                                 printfPQExpBuffer(&buf, "    %s", ruledef);
1971                                                 printTableAddFooter(&cont, buf.data);
1972                                         }
1973                                 }
1974                         }
1975                         PQclear(result);
1976                 }
1977         }
1978
1979         /*
1980          * Print triggers next, if any (but only user-defined triggers).  This
1981          * could apply to either a table or a view.
1982          */
1983         if (tableinfo.hastriggers)
1984         {
1985                 PGresult   *result;
1986                 int                     tuples;
1987
1988                 printfPQExpBuffer(&buf,
1989                                                   "SELECT t.tgname, "
1990                                                   "pg_catalog.pg_get_triggerdef(t.oid%s), "
1991                                                   "t.tgenabled\n"
1992                                                   "FROM pg_catalog.pg_trigger t\n"
1993                                                   "WHERE t.tgrelid = '%s' AND ",
1994                                                   (pset.sversion >= 90000 ? ", true" : ""),
1995                                                   oid);
1996                 if (pset.sversion >= 90000)
1997                         appendPQExpBuffer(&buf, "NOT t.tgisinternal");
1998                 else if (pset.sversion >= 80300)
1999                         appendPQExpBuffer(&buf, "t.tgconstraint = 0");
2000                 else
2001                         appendPQExpBuffer(&buf,
2002                                                           "(NOT tgisconstraint "
2003                                                           " OR NOT EXISTS"
2004                                                           "  (SELECT 1 FROM pg_catalog.pg_depend d "
2005                                                           "   JOIN pg_catalog.pg_constraint c ON (d.refclassid = c.tableoid AND d.refobjid = c.oid) "
2006                                                           "   WHERE d.classid = t.tableoid AND d.objid = t.oid AND d.deptype = 'i' AND c.contype = 'f'))");
2007                 appendPQExpBuffer(&buf, "\nORDER BY 1;");
2008
2009                 result = PSQLexec(buf.data, false);
2010                 if (!result)
2011                         goto error_return;
2012                 else
2013                         tuples = PQntuples(result);
2014
2015                 if (tuples > 0)
2016                 {
2017                         bool            have_heading;
2018                         int                     category;
2019
2020                         /*
2021                          * split the output into 4 different categories. Enabled triggers,
2022                          * disabled triggers and the two special ALWAYS and REPLICA
2023                          * configurations.
2024                          */
2025                         for (category = 0; category < 4; category++)
2026                         {
2027                                 have_heading = false;
2028                                 for (i = 0; i < tuples; i++)
2029                                 {
2030                                         bool            list_trigger;
2031                                         const char *tgdef;
2032                                         const char *usingpos;
2033                                         const char *tgenabled;
2034
2035                                         /*
2036                                          * Check if this trigger falls into the current category
2037                                          */
2038                                         tgenabled = PQgetvalue(result, i, 2);
2039                                         list_trigger = false;
2040                                         switch (category)
2041                                         {
2042                                                 case 0:
2043                                                         if (*tgenabled == 'O' || *tgenabled == 't')
2044                                                                 list_trigger = true;
2045                                                         break;
2046                                                 case 1:
2047                                                         if (*tgenabled == 'D' || *tgenabled == 'f')
2048                                                                 list_trigger = true;
2049                                                         break;
2050                                                 case 2:
2051                                                         if (*tgenabled == 'A')
2052                                                                 list_trigger = true;
2053                                                         break;
2054                                                 case 3:
2055                                                         if (*tgenabled == 'R')
2056                                                                 list_trigger = true;
2057                                                         break;
2058                                         }
2059                                         if (list_trigger == false)
2060                                                 continue;
2061
2062                                         /* Print the category heading once */
2063                                         if (have_heading == false)
2064                                         {
2065                                                 switch (category)
2066                                                 {
2067                                                         case 0:
2068                                                                 printfPQExpBuffer(&buf, _("Triggers:"));
2069                                                                 break;
2070                                                         case 1:
2071                                                                 printfPQExpBuffer(&buf, _("Disabled triggers:"));
2072                                                                 break;
2073                                                         case 2:
2074                                                                 printfPQExpBuffer(&buf, _("Triggers firing always:"));
2075                                                                 break;
2076                                                         case 3:
2077                                                                 printfPQExpBuffer(&buf, _("Triggers firing on replica only:"));
2078                                                                 break;
2079
2080                                                 }
2081                                                 printTableAddFooter(&cont, buf.data);
2082                                                 have_heading = true;
2083                                         }
2084
2085                                         /* Everything after "TRIGGER" is echoed verbatim */
2086                                         tgdef = PQgetvalue(result, i, 1);
2087                                         usingpos = strstr(tgdef, " TRIGGER ");
2088                                         if (usingpos)
2089                                                 tgdef = usingpos + 9;
2090
2091                                         printfPQExpBuffer(&buf, "    %s", tgdef);
2092                                         printTableAddFooter(&cont, buf.data);
2093                                 }
2094                         }
2095                 }
2096                 PQclear(result);
2097         }
2098
2099         /*
2100          * Finish printing the footer information about a table.
2101          */
2102         if (tableinfo.relkind == 'r' || tableinfo.relkind == 'f')
2103         {
2104                 PGresult   *result;
2105                 int                     tuples;
2106
2107                 /* print foreign server name */
2108                 if (tableinfo.relkind == 'f')
2109                 {
2110                         char       *ftoptions;
2111
2112                         /* Footer information about foreign table */
2113                         printfPQExpBuffer(&buf,
2114                                                           "SELECT s.srvname,\n"
2115                                                           "       array_to_string(ARRAY(SELECT "
2116                                                           "       quote_ident(option_name) ||  ' ' || "
2117                                                           "       quote_literal(option_value)  FROM "
2118                                                         "       pg_options_to_table(ftoptions)),  ', ') "
2119                                                           "FROM pg_catalog.pg_foreign_table f,\n"
2120                                                           "     pg_catalog.pg_foreign_server s\n"
2121                                                           "WHERE f.ftrelid = %s AND s.oid = f.ftserver;",
2122                                                           oid);
2123                         result = PSQLexec(buf.data, false);
2124                         if (!result)
2125                                 goto error_return;
2126                         else if (PQntuples(result) != 1)
2127                         {
2128                                 PQclear(result);
2129                                 goto error_return;
2130                         }
2131
2132                         /* Print server name */
2133                         printfPQExpBuffer(&buf, "Server: %s",
2134                                                           PQgetvalue(result, 0, 0));
2135                         printTableAddFooter(&cont, buf.data);
2136
2137                         /* Print per-table FDW options, if any */
2138                         ftoptions = PQgetvalue(result, 0, 1);
2139                         if (ftoptions && ftoptions[0] != '\0')
2140                         {
2141                                 printfPQExpBuffer(&buf, "FDW Options: (%s)", ftoptions);
2142                                 printTableAddFooter(&cont, buf.data);
2143                         }
2144                         PQclear(result);
2145                 }
2146
2147                 /* print inherited tables */
2148                 printfPQExpBuffer(&buf, "SELECT c.oid::pg_catalog.regclass FROM pg_catalog.pg_class c, pg_catalog.pg_inherits i WHERE c.oid=i.inhparent AND i.inhrelid = '%s' ORDER BY inhseqno;", oid);
2149
2150                 result = PSQLexec(buf.data, false);
2151                 if (!result)
2152                         goto error_return;
2153                 else
2154                 {
2155                         const char *s = _("Inherits");
2156                         int                     sw = pg_wcswidth(s, strlen(s), pset.encoding);
2157
2158                         tuples = PQntuples(result);
2159
2160                         for (i = 0; i < tuples; i++)
2161                         {
2162                                 if (i == 0)
2163                                         printfPQExpBuffer(&buf, "%s: %s",
2164                                                                           s, PQgetvalue(result, i, 0));
2165                                 else
2166                                         printfPQExpBuffer(&buf, "%*s  %s",
2167                                                                           sw, "", PQgetvalue(result, i, 0));
2168                                 if (i < tuples - 1)
2169                                         appendPQExpBuffer(&buf, ",");
2170
2171                                 printTableAddFooter(&cont, buf.data);
2172                         }
2173
2174                         PQclear(result);
2175                 }
2176
2177                 /* print child tables */
2178                 if (pset.sversion >= 80300)
2179                         printfPQExpBuffer(&buf, "SELECT c.oid::pg_catalog.regclass FROM pg_catalog.pg_class c, pg_catalog.pg_inherits i WHERE c.oid=i.inhrelid AND i.inhparent = '%s' ORDER BY c.oid::pg_catalog.regclass::pg_catalog.text;", oid);
2180                 else
2181                         printfPQExpBuffer(&buf, "SELECT c.oid::pg_catalog.regclass FROM pg_catalog.pg_class c, pg_catalog.pg_inherits i WHERE c.oid=i.inhrelid AND i.inhparent = '%s' ORDER BY c.relname;", oid);
2182
2183                 result = PSQLexec(buf.data, false);
2184                 if (!result)
2185                         goto error_return;
2186                 else
2187                         tuples = PQntuples(result);
2188
2189                 if (!verbose)
2190                 {
2191                         /* print the number of child tables, if any */
2192                         if (tuples > 0)
2193                         {
2194                                 printfPQExpBuffer(&buf, _("Number of child tables: %d (Use \\d+ to list them.)"), tuples);
2195                                 printTableAddFooter(&cont, buf.data);
2196                         }
2197                 }
2198                 else
2199                 {
2200                         /* display the list of child tables */
2201                         const char *ct = _("Child tables");
2202                         int                     ctw = pg_wcswidth(ct, strlen(ct), pset.encoding);
2203
2204                         for (i = 0; i < tuples; i++)
2205                         {
2206                                 if (i == 0)
2207                                         printfPQExpBuffer(&buf, "%s: %s",
2208                                                                           ct, PQgetvalue(result, i, 0));
2209                                 else
2210                                         printfPQExpBuffer(&buf, "%*s  %s",
2211                                                                           ctw, "", PQgetvalue(result, i, 0));
2212                                 if (i < tuples - 1)
2213                                         appendPQExpBuffer(&buf, ",");
2214
2215                                 printTableAddFooter(&cont, buf.data);
2216                         }
2217                 }
2218                 PQclear(result);
2219
2220                 /* Table type */
2221                 if (tableinfo.reloftype)
2222                 {
2223                         printfPQExpBuffer(&buf, _("Typed table of type: %s"), tableinfo.reloftype);
2224                         printTableAddFooter(&cont, buf.data);
2225                 }
2226
2227                 /* OIDs and options */
2228                 if (verbose)
2229                 {
2230                         const char *s = _("Has OIDs");
2231
2232                         printfPQExpBuffer(&buf, "%s: %s", s,
2233                                                           (tableinfo.hasoids ? _("yes") : _("no")));
2234                         printTableAddFooter(&cont, buf.data);
2235
2236                         /* print reloptions */
2237                         if (pset.sversion >= 80200)
2238                         {
2239                                 if (tableinfo.reloptions && tableinfo.reloptions[0] != '\0')
2240                                 {
2241                                         const char *t = _("Options");
2242
2243                                         printfPQExpBuffer(&buf, "%s: %s", t,
2244                                                                           tableinfo.reloptions);
2245                                         printTableAddFooter(&cont, buf.data);
2246                                 }
2247                         }
2248                 }
2249
2250                 add_tablespace_footer(&cont, tableinfo.relkind, tableinfo.tablespace,
2251                                                           true);
2252         }
2253
2254         printTable(&cont, pset.queryFout, pset.logfile);
2255         printTableCleanup(&cont);
2256
2257         retval = true;
2258
2259 error_return:
2260
2261         /* clean up */
2262         if (printTableInitialized)
2263                 printTableCleanup(&cont);
2264         termPQExpBuffer(&buf);
2265         termPQExpBuffer(&title);
2266         termPQExpBuffer(&tmpbuf);
2267
2268         if (seq_values)
2269         {
2270                 for (ptr = seq_values; *ptr; ptr++)
2271                         free(*ptr);
2272                 free(seq_values);
2273         }
2274
2275         if (modifiers)
2276         {
2277                 for (ptr = modifiers; *ptr; ptr++)
2278                         free(*ptr);
2279                 free(modifiers);
2280         }
2281
2282         if (view_def)
2283                 free(view_def);
2284
2285         if (res)
2286                 PQclear(res);
2287
2288         return retval;
2289 }
2290
2291 /*
2292  * Add a tablespace description to a footer.  If 'newline' is true, it is added
2293  * in a new line; otherwise it's appended to the current value of the last
2294  * footer.
2295  */
2296 static void
2297 add_tablespace_footer(printTableContent *const cont, char relkind,
2298                                           Oid tablespace, const bool newline)
2299 {
2300         /* relkinds for which we support tablespaces */
2301         if (relkind == 'r' || relkind == 'i')
2302         {
2303                 /*
2304                  * We ignore the database default tablespace so that users not using
2305                  * tablespaces don't need to know about them.  This case also covers
2306                  * pre-8.0 servers, for which tablespace will always be 0.
2307                  */
2308                 if (tablespace != 0)
2309                 {
2310                         PGresult   *result = NULL;
2311                         PQExpBufferData buf;
2312
2313                         initPQExpBuffer(&buf);
2314                         printfPQExpBuffer(&buf,
2315                                                           "SELECT spcname FROM pg_catalog.pg_tablespace\n"
2316                                                           "WHERE oid = '%u';", tablespace);
2317                         result = PSQLexec(buf.data, false);
2318                         if (!result)
2319                                 return;
2320                         /* Should always be the case, but.... */
2321                         if (PQntuples(result) > 0)
2322                         {
2323                                 if (newline)
2324                                 {
2325                                         /* Add the tablespace as a new footer */
2326                                         printfPQExpBuffer(&buf, _("Tablespace: \"%s\""),
2327                                                                           PQgetvalue(result, 0, 0));
2328                                         printTableAddFooter(cont, buf.data);
2329                                 }
2330                                 else
2331                                 {
2332                                         /* Append the tablespace to the latest footer */
2333                                         printfPQExpBuffer(&buf, "%s", cont->footer->data);
2334
2335                                         /*
2336                                          * translator: before this string there's an index
2337                                          * description like '"foo_pkey" PRIMARY KEY, btree (a)'
2338                                          */
2339                                         appendPQExpBuffer(&buf, _(", tablespace \"%s\""),
2340                                                                           PQgetvalue(result, 0, 0));
2341                                         printTableSetFooter(cont, buf.data);
2342                                 }
2343                         }
2344                         PQclear(result);
2345                         termPQExpBuffer(&buf);
2346                 }
2347         }
2348 }
2349
2350 /*
2351  * \du or \dg
2352  *
2353  * Describes roles.  Any schema portion of the pattern is ignored.
2354  */
2355 bool
2356 describeRoles(const char *pattern, bool verbose)
2357 {
2358         PQExpBufferData buf;
2359         PGresult   *res;
2360         printTableContent cont;
2361         printTableOpt myopt = pset.popt.topt;
2362         int                     ncols = 3;
2363         int                     nrows = 0;
2364         int                     i;
2365         int                     conns;
2366         const char      align = 'l';
2367         char      **attr;
2368
2369         myopt.default_footer = false;
2370
2371         initPQExpBuffer(&buf);
2372
2373         if (pset.sversion >= 80100)
2374         {
2375                 printfPQExpBuffer(&buf,
2376                                                   "SELECT r.rolname, r.rolsuper, r.rolinherit,\n"
2377                                                   "  r.rolcreaterole, r.rolcreatedb, r.rolcanlogin,\n"
2378                                                   "  r.rolconnlimit, r.rolvaliduntil,\n"
2379                                                   "  ARRAY(SELECT b.rolname\n"
2380                                                   "        FROM pg_catalog.pg_auth_members m\n"
2381                                  "        JOIN pg_catalog.pg_roles b ON (m.roleid = b.oid)\n"
2382                                                   "        WHERE m.member = r.oid) as memberof");
2383
2384                 if (verbose && pset.sversion >= 80200)
2385                 {
2386                         appendPQExpBufferStr(&buf, "\n, pg_catalog.shobj_description(r.oid, 'pg_authid') AS description");
2387                         ncols++;
2388                 }
2389                 if (pset.sversion >= 90100)
2390                 {
2391                         appendPQExpBufferStr(&buf, "\n, r.rolreplication");
2392                 }
2393
2394                 appendPQExpBufferStr(&buf, "\nFROM pg_catalog.pg_roles r\n");
2395
2396                 processSQLNamePattern(pset.db, &buf, pattern, false, false,
2397                                                           NULL, "r.rolname", NULL, NULL);
2398         }
2399         else
2400         {
2401                 printfPQExpBuffer(&buf,
2402                                                   "SELECT u.usename AS rolname,\n"
2403                                                   "  u.usesuper AS rolsuper,\n"
2404                                                   "  true AS rolinherit, false AS rolcreaterole,\n"
2405                                          "  u.usecreatedb AS rolcreatedb, true AS rolcanlogin,\n"
2406                                                   "  -1 AS rolconnlimit,"
2407                                                   "  u.valuntil as rolvaliduntil,\n"
2408                                                   "  ARRAY(SELECT g.groname FROM pg_catalog.pg_group g WHERE u.usesysid = ANY(g.grolist)) as memberof"
2409                                                   "\nFROM pg_catalog.pg_user u\n");
2410
2411                 processSQLNamePattern(pset.db, &buf, pattern, false, false,
2412                                                           NULL, "u.usename", NULL, NULL);
2413         }
2414
2415         appendPQExpBuffer(&buf, "ORDER BY 1;");
2416
2417         res = PSQLexec(buf.data, false);
2418         if (!res)
2419                 return false;
2420
2421         nrows = PQntuples(res);
2422         attr = pg_malloc_zero((nrows + 1) * sizeof(*attr));
2423
2424         printTableInit(&cont, &myopt, _("List of roles"), ncols, nrows);
2425
2426         printTableAddHeader(&cont, gettext_noop("Role name"), true, align);
2427         printTableAddHeader(&cont, gettext_noop("Attributes"), true, align);
2428         printTableAddHeader(&cont, gettext_noop("Member of"), true, align);
2429
2430         if (verbose && pset.sversion >= 80200)
2431                 printTableAddHeader(&cont, gettext_noop("Description"), true, align);
2432
2433         for (i = 0; i < nrows; i++)
2434         {
2435                 printTableAddCell(&cont, PQgetvalue(res, i, 0), false, false);
2436
2437                 resetPQExpBuffer(&buf);
2438                 if (strcmp(PQgetvalue(res, i, 1), "t") == 0)
2439                         add_role_attribute(&buf, _("Superuser"));
2440
2441                 if (strcmp(PQgetvalue(res, i, 2), "t") != 0)
2442                         add_role_attribute(&buf, _("No inheritance"));
2443
2444                 if (strcmp(PQgetvalue(res, i, 3), "t") == 0)
2445                         add_role_attribute(&buf, _("Create role"));
2446
2447                 if (strcmp(PQgetvalue(res, i, 4), "t") == 0)
2448                         add_role_attribute(&buf, _("Create DB"));
2449
2450                 if (strcmp(PQgetvalue(res, i, 5), "t") != 0)
2451                         add_role_attribute(&buf, _("Cannot login"));
2452
2453                 if (pset.sversion >= 90100)
2454                         if (strcmp(PQgetvalue(res, i, (verbose ? 10 : 9)), "t") == 0)
2455                                 add_role_attribute(&buf, _("Replication"));
2456
2457                 conns = atoi(PQgetvalue(res, i, 6));
2458                 if (conns >= 0)
2459                 {
2460                         if (buf.len > 0)
2461                                 appendPQExpBufferStr(&buf, "\n");
2462
2463                         if (conns == 0)
2464                                 appendPQExpBuffer(&buf, _("No connections"));
2465                         else
2466                                 appendPQExpBuffer(&buf, ngettext("%d connection",
2467                                                                                                  "%d connections",
2468                                                                                                  conns),
2469                                                                   conns);
2470                 }
2471
2472                 if (strcmp(PQgetvalue(res, i, 7), "") != 0)
2473                 {
2474                         if (buf.len > 0)
2475                                 appendPQExpBufferStr(&buf, "\n");
2476                         appendPQExpBufferStr(&buf, _("Password valid until "));
2477                         appendPQExpBufferStr(&buf, PQgetvalue(res, i, 7));
2478                 }
2479
2480                 attr[i] = pg_strdup(buf.data);
2481
2482                 printTableAddCell(&cont, attr[i], false, false);
2483
2484                 printTableAddCell(&cont, PQgetvalue(res, i, 8), false, false);
2485
2486                 if (verbose && pset.sversion >= 80200)
2487                         printTableAddCell(&cont, PQgetvalue(res, i, 9), false, false);
2488         }
2489         termPQExpBuffer(&buf);
2490
2491         printTable(&cont, pset.queryFout, pset.logfile);
2492         printTableCleanup(&cont);
2493
2494         for (i = 0; i < nrows; i++)
2495                 free(attr[i]);
2496         free(attr);
2497
2498         PQclear(res);
2499         return true;
2500 }
2501
2502 static void
2503 add_role_attribute(PQExpBuffer buf, const char *const str)
2504 {
2505         if (buf->len > 0)
2506                 appendPQExpBufferStr(buf, ", ");
2507
2508         appendPQExpBufferStr(buf, str);
2509 }
2510
2511 /*
2512  * \drds
2513  */
2514 bool
2515 listDbRoleSettings(const char *pattern, const char *pattern2)
2516 {
2517         PQExpBufferData buf;
2518         PGresult   *res;
2519         printQueryOpt myopt = pset.popt;
2520
2521         initPQExpBuffer(&buf);
2522
2523         if (pset.sversion >= 90000)
2524         {
2525                 bool            havewhere;
2526
2527                 printfPQExpBuffer(&buf, "SELECT rolname AS role, datname AS database,\n"
2528                                 "pg_catalog.array_to_string(setconfig, E'\\n') AS settings\n"
2529                                                   "FROM pg_db_role_setting AS s\n"
2530                                    "LEFT JOIN pg_database ON pg_database.oid = setdatabase\n"
2531                                                   "LEFT JOIN pg_roles ON pg_roles.oid = setrole\n");
2532                 havewhere = processSQLNamePattern(pset.db, &buf, pattern, false, false,
2533                                                                            NULL, "pg_roles.rolname", NULL, NULL);
2534                 processSQLNamePattern(pset.db, &buf, pattern2, havewhere, false,
2535                                                           NULL, "pg_database.datname", NULL, NULL);
2536                 appendPQExpBufferStr(&buf, "ORDER BY role, database;");
2537         }
2538         else
2539         {
2540                 fprintf(pset.queryFout,
2541                 _("No per-database role settings support in this server version.\n"));
2542                 return false;
2543         }
2544
2545         res = PSQLexec(buf.data, false);
2546         if (!res)
2547                 return false;
2548
2549         if (PQntuples(res) == 0 && !pset.quiet)
2550         {
2551                 if (pattern)
2552                         fprintf(pset.queryFout, _("No matching settings found.\n"));
2553                 else
2554                         fprintf(pset.queryFout, _("No settings found.\n"));
2555         }
2556         else
2557         {
2558                 myopt.nullPrint = NULL;
2559                 myopt.title = _("List of settings");
2560                 myopt.translate_header = true;
2561
2562                 printQuery(res, &myopt, pset.queryFout, pset.logfile);
2563         }
2564
2565         PQclear(res);
2566         resetPQExpBuffer(&buf);
2567         return true;
2568 }
2569
2570
2571 /*
2572  * listTables()
2573  *
2574  * handler for \dt, \di, etc.
2575  *
2576  * tabtypes is an array of characters, specifying what info is desired:
2577  * t - tables
2578  * i - indexes
2579  * v - views
2580  * s - sequences
2581  * E - foreign table (Note: different from 'f', the relkind value)
2582  * (any order of the above is fine)
2583  * If tabtypes is empty, we default to \dtvsE.
2584  */
2585 bool
2586 listTables(const char *tabtypes, const char *pattern, bool verbose, bool showSystem)
2587 {
2588         bool            showTables = strchr(tabtypes, 't') != NULL;
2589         bool            showIndexes = strchr(tabtypes, 'i') != NULL;
2590         bool            showViews = strchr(tabtypes, 'v') != NULL;
2591         bool            showSeq = strchr(tabtypes, 's') != NULL;
2592         bool            showForeign = strchr(tabtypes, 'E') != NULL;
2593
2594         PQExpBufferData buf;
2595         PGresult   *res;
2596         printQueryOpt myopt = pset.popt;
2597         static const bool translate_columns[] = {false, false, true, false, false, false, false};
2598
2599         if (!(showTables || showIndexes || showViews || showSeq || showForeign))
2600                 showTables = showViews = showSeq = showForeign = true;
2601
2602         initPQExpBuffer(&buf);
2603
2604         /*
2605          * Note: as of Pg 8.2, we no longer use relkind 's', but we keep it here
2606          * for backwards compatibility.
2607          */
2608         printfPQExpBuffer(&buf,
2609                                           "SELECT n.nspname as \"%s\",\n"
2610                                           "  c.relname as \"%s\",\n"
2611                                           "  CASE c.relkind WHEN 'r' THEN '%s' WHEN 'v' THEN '%s' WHEN 'i' THEN '%s' WHEN 'S' THEN '%s' WHEN 's' THEN '%s' WHEN 'f' THEN '%s' END as \"%s\",\n"
2612                                           "  pg_catalog.pg_get_userbyid(c.relowner) as \"%s\"",
2613                                           gettext_noop("Schema"),
2614                                           gettext_noop("Name"),
2615                                           gettext_noop("table"),
2616                                           gettext_noop("view"),
2617                                           gettext_noop("index"),
2618                                           gettext_noop("sequence"),
2619                                           gettext_noop("special"),
2620                                           gettext_noop("foreign table"),
2621                                           gettext_noop("Type"),
2622                                           gettext_noop("Owner"));
2623
2624         if (showIndexes)
2625                 appendPQExpBuffer(&buf,
2626                                                   ",\n c2.relname as \"%s\"",
2627                                                   gettext_noop("Table"));
2628
2629         if (verbose)
2630         {
2631                 /*
2632                  * As of PostgreSQL 9.0, use pg_table_size() to show a more acurate
2633                  * size of a table, including FSM, VM and TOAST tables.
2634                  */
2635                 if (pset.sversion >= 90000)
2636                         appendPQExpBuffer(&buf,
2637                                                           ",\n  pg_catalog.pg_size_pretty(pg_catalog.pg_table_size(c.oid)) as \"%s\"",
2638                                                           gettext_noop("Size"));
2639                 else if (pset.sversion >= 80100)
2640                         appendPQExpBuffer(&buf,
2641                                                           ",\n  pg_catalog.pg_size_pretty(pg_catalog.pg_relation_size(c.oid)) as \"%s\"",
2642                                                           gettext_noop("Size"));
2643
2644                 appendPQExpBuffer(&buf,
2645                           ",\n  pg_catalog.obj_description(c.oid, 'pg_class') as \"%s\"",
2646                                                   gettext_noop("Description"));
2647         }
2648
2649         appendPQExpBuffer(&buf,
2650                                           "\nFROM pg_catalog.pg_class c"
2651          "\n     LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace");
2652         if (showIndexes)
2653                 appendPQExpBuffer(&buf,
2654                          "\n     LEFT JOIN pg_catalog.pg_index i ON i.indexrelid = c.oid"
2655                    "\n     LEFT JOIN pg_catalog.pg_class c2 ON i.indrelid = c2.oid");
2656
2657         appendPQExpBuffer(&buf, "\nWHERE c.relkind IN (");
2658         if (showTables)
2659                 appendPQExpBuffer(&buf, "'r',");
2660         if (showViews)
2661                 appendPQExpBuffer(&buf, "'v',");
2662         if (showIndexes)
2663                 appendPQExpBuffer(&buf, "'i',");
2664         if (showSeq)
2665                 appendPQExpBuffer(&buf, "'S',");
2666         if (showSystem || pattern)
2667                 appendPQExpBuffer(&buf, "'s',");                /* was RELKIND_SPECIAL in <=
2668                                                                                                  * 8.1 */
2669         if (showForeign)
2670                 appendPQExpBuffer(&buf, "'f',");
2671
2672         appendPQExpBuffer(&buf, "''");          /* dummy */
2673         appendPQExpBuffer(&buf, ")\n");
2674
2675         if (!showSystem && !pattern)
2676                 appendPQExpBuffer(&buf, "      AND n.nspname <> 'pg_catalog'\n"
2677                                                   "      AND n.nspname <> 'information_schema'\n");
2678
2679         /*
2680          * TOAST objects are suppressed unconditionally.  Since we don't provide
2681          * any way to select relkind 't' above, we would never show toast tables
2682          * in any case; it seems a bit confusing to allow their indexes to be
2683          * shown. Use plain \d if you really need to look at a TOAST table/index.
2684          */
2685         appendPQExpBuffer(&buf, "      AND n.nspname !~ '^pg_toast'\n");
2686
2687         processSQLNamePattern(pset.db, &buf, pattern, true, false,
2688                                                   "n.nspname", "c.relname", NULL,
2689                                                   "pg_catalog.pg_table_is_visible(c.oid)");
2690
2691         appendPQExpBuffer(&buf, "ORDER BY 1,2;");
2692
2693         res = PSQLexec(buf.data, false);
2694         termPQExpBuffer(&buf);
2695         if (!res)
2696                 return false;
2697
2698         if (PQntuples(res) == 0 && !pset.quiet)
2699         {
2700                 if (pattern)
2701                         fprintf(pset.queryFout, _("No matching relations found.\n"));
2702                 else
2703                         fprintf(pset.queryFout, _("No relations found.\n"));
2704         }
2705         else
2706         {
2707                 myopt.nullPrint = NULL;
2708                 myopt.title = _("List of relations");
2709                 myopt.translate_header = true;
2710                 myopt.translate_columns = translate_columns;
2711
2712                 printQuery(res, &myopt, pset.queryFout, pset.logfile);
2713         }
2714
2715         PQclear(res);
2716         return true;
2717 }
2718
2719
2720 /*
2721  * \dL
2722  *
2723  * Describes languages.
2724  */
2725 bool
2726 listLanguages(const char *pattern, bool verbose, bool showSystem)
2727 {
2728         PQExpBufferData buf;
2729         PGresult   *res;
2730         printQueryOpt myopt = pset.popt;
2731
2732         initPQExpBuffer(&buf);
2733
2734         printfPQExpBuffer(&buf,
2735                                           "SELECT l.lanname AS \"%s\",\n",
2736                                           gettext_noop("Name"));
2737         if (pset.sversion >= 80300)
2738                 appendPQExpBuffer(&buf,
2739                                 "       pg_catalog.pg_get_userbyid(l.lanowner) as \"%s\",\n",
2740                                                   gettext_noop("Owner"));
2741
2742         appendPQExpBuffer(&buf,
2743                                           "       l.lanpltrusted AS \"%s\"",
2744                                           gettext_noop("Trusted"));
2745
2746         if (verbose)
2747         {
2748                 appendPQExpBuffer(&buf,
2749                                                   ",\n       NOT l.lanispl AS \"%s\",\n"
2750                                                   "       l.lanplcallfoid::regprocedure AS \"%s\",\n"
2751                                    "       l.lanvalidator::regprocedure AS \"%s\",\n       ",
2752                                                   gettext_noop("Internal Language"),
2753                                                   gettext_noop("Call Handler"),
2754                                                   gettext_noop("Validator"));
2755                 if (pset.sversion >= 90000)
2756                         appendPQExpBuffer(&buf, "l.laninline::regprocedure AS \"%s\",\n       ",
2757                                                           gettext_noop("Inline Handler"));
2758                 printACLColumn(&buf, "l.lanacl");
2759         }
2760
2761         appendPQExpBuffer(&buf,
2762                                           ",\n       d.description AS \"%s\""
2763                                           "\nFROM pg_catalog.pg_language l\n"
2764                                           "LEFT JOIN pg_catalog.pg_description d\n"
2765                                           "  ON d.classoid = l.tableoid AND d.objoid = l.oid\n"
2766                                           "  AND d.objsubid = 0\n",
2767                                           gettext_noop("Description"));
2768
2769         if (pattern)
2770                 processSQLNamePattern(pset.db, &buf, pattern, false, false,
2771                                                           NULL, "l.lanname", NULL, NULL);
2772
2773         if (!showSystem && !pattern)
2774                 appendPQExpBuffer(&buf, "WHERE l.lanplcallfoid != 0\n");
2775
2776
2777         appendPQExpBuffer(&buf, "ORDER BY 1;");
2778
2779         res = PSQLexec(buf.data, false);
2780         termPQExpBuffer(&buf);
2781         if (!res)
2782                 return false;
2783
2784         myopt.nullPrint = NULL;
2785         myopt.title = _("List of languages");
2786         myopt.translate_header = true;
2787
2788         printQuery(res, &myopt, pset.queryFout, pset.logfile);
2789
2790         PQclear(res);
2791         return true;
2792 }
2793
2794
2795 /*
2796  * \dD
2797  *
2798  * Describes domains.
2799  */
2800 bool
2801 listDomains(const char *pattern, bool verbose, bool showSystem)
2802 {
2803         PQExpBufferData buf;
2804         PGresult   *res;
2805         printQueryOpt myopt = pset.popt;
2806
2807         initPQExpBuffer(&buf);
2808
2809         printfPQExpBuffer(&buf,
2810                                           "SELECT n.nspname as \"%s\",\n"
2811                                           "       t.typname as \"%s\",\n"
2812          "       pg_catalog.format_type(t.typbasetype, t.typtypmod) as \"%s\",\n"
2813                                           "       TRIM(LEADING\n",
2814                                           gettext_noop("Schema"),
2815                                           gettext_noop("Name"),
2816                                           gettext_noop("Type"));
2817
2818         if (pset.sversion >= 90100)
2819                 appendPQExpBuffer(&buf,
2820                                                   "            COALESCE((SELECT ' collate ' || c.collname FROM pg_catalog.pg_collation c, pg_catalog.pg_type bt\n"
2821                                                   "                      WHERE c.oid = t.typcollation AND bt.oid = t.typbasetype AND t.typcollation <> bt.typcollation), '') ||\n");
2822         appendPQExpBuffer(&buf,
2823            "            CASE WHEN t.typnotnull THEN ' not null' ELSE '' END ||\n"
2824                                           "            CASE WHEN t.typdefault IS NOT NULL THEN ' default ' || t.typdefault ELSE '' END\n"
2825                                           "       ) as \"%s\",\n"
2826                                           "       pg_catalog.array_to_string(ARRAY(\n"
2827                                           "         SELECT pg_catalog.pg_get_constraintdef(r.oid, true) FROM pg_catalog.pg_constraint r WHERE t.oid = r.contypid\n"
2828                                           "       ), ' ') as \"%s\"",
2829                                           gettext_noop("Modifier"),
2830                                           gettext_noop("Check"));
2831
2832         if (verbose)
2833         {
2834                 if (pset.sversion >= 90200)
2835                 {
2836                         appendPQExpBuffer(&buf, ",\n  ");
2837                         printACLColumn(&buf, "t.typacl");
2838                 }
2839                 appendPQExpBuffer(&buf,
2840                                                   ",\n       d.description as \"%s\"",
2841                                                   gettext_noop("Description"));
2842         }
2843
2844         appendPQExpBuffer(&buf,
2845                                           "\nFROM pg_catalog.pg_type t\n"
2846          "     LEFT JOIN pg_catalog.pg_namespace n ON n.oid = t.typnamespace\n");
2847
2848         if (verbose)
2849                 appendPQExpBuffer(&buf,
2850                                                   "     LEFT JOIN pg_catalog.pg_description d "
2851                                                   "ON d.classoid = t.tableoid AND d.objoid = t.oid "
2852                                                   "AND d.objsubid = 0\n");
2853
2854         appendPQExpBuffer(&buf, "WHERE t.typtype = 'd'\n");
2855
2856         if (!showSystem && !pattern)
2857                 appendPQExpBuffer(&buf, "      AND n.nspname <> 'pg_catalog'\n"
2858                                                   "      AND n.nspname <> 'information_schema'\n");
2859
2860         processSQLNamePattern(pset.db, &buf, pattern, true, false,
2861                                                   "n.nspname", "t.typname", NULL,
2862                                                   "pg_catalog.pg_type_is_visible(t.oid)");
2863
2864         appendPQExpBuffer(&buf, "ORDER BY 1, 2;");
2865
2866         res = PSQLexec(buf.data, false);
2867         termPQExpBuffer(&buf);
2868         if (!res)
2869                 return false;
2870
2871         myopt.nullPrint = NULL;
2872         myopt.title = _("List of domains");
2873         myopt.translate_header = true;
2874
2875         printQuery(res, &myopt, pset.queryFout, pset.logfile);
2876
2877         PQclear(res);
2878         return true;
2879 }
2880
2881 /*
2882  * \dc
2883  *
2884  * Describes conversions.
2885  */
2886 bool
2887 listConversions(const char *pattern, bool verbose, bool showSystem)
2888 {
2889         PQExpBufferData buf;
2890         PGresult   *res;
2891         printQueryOpt myopt = pset.popt;
2892         static const bool translate_columns[] = {false, false, false, false, true};
2893
2894         initPQExpBuffer(&buf);
2895
2896         printfPQExpBuffer(&buf,
2897                                           "SELECT n.nspname AS \"%s\",\n"
2898                                           "       c.conname AS \"%s\",\n"
2899            "       pg_catalog.pg_encoding_to_char(c.conforencoding) AS \"%s\",\n"
2900                 "       pg_catalog.pg_encoding_to_char(c.contoencoding) AS \"%s\",\n"
2901                                           "       CASE WHEN c.condefault THEN '%s'\n"
2902                                           "       ELSE '%s' END AS \"%s\"",
2903                                           gettext_noop("Schema"),
2904                                           gettext_noop("Name"),
2905                                           gettext_noop("Source"),
2906                                           gettext_noop("Destination"),
2907                                           gettext_noop("yes"), gettext_noop("no"),
2908                                           gettext_noop("Default?"));
2909
2910         if (verbose)
2911                 appendPQExpBuffer(&buf,
2912                                                   ",\n       d.description AS \"%s\"",
2913                                                   gettext_noop("Description"));
2914
2915         appendPQExpBuffer(&buf,
2916                                           "\nFROM pg_catalog.pg_conversion c\n"
2917                                           "     JOIN pg_catalog.pg_namespace n "
2918                                           "ON n.oid = c.connamespace\n");
2919
2920         if (verbose)
2921                 appendPQExpBuffer(&buf,
2922                                                   "LEFT JOIN pg_catalog.pg_description d "
2923                                                   "ON d.classoid = c.tableoid\n"
2924                                                   "          AND d.objoid = c.oid "
2925                                                   "AND d.objsubid = 0\n");
2926
2927         appendPQExpBuffer(&buf, "WHERE true\n");
2928
2929         if (!showSystem && !pattern)
2930                 appendPQExpBuffer(&buf, "  AND n.nspname <> 'pg_catalog'\n"
2931                                                   "  AND n.nspname <> 'information_schema'\n");
2932
2933         processSQLNamePattern(pset.db, &buf, pattern, true, false,
2934                                                   "n.nspname", "c.conname", NULL,
2935                                                   "pg_catalog.pg_conversion_is_visible(c.oid)");
2936
2937         appendPQExpBuffer(&buf, "ORDER BY 1, 2;");
2938
2939         res = PSQLexec(buf.data, false);
2940         termPQExpBuffer(&buf);
2941         if (!res)
2942                 return false;
2943
2944         myopt.nullPrint = NULL;
2945         myopt.title = _("List of conversions");
2946         myopt.translate_header = true;
2947         myopt.translate_columns = translate_columns;
2948
2949         printQuery(res, &myopt, pset.queryFout, pset.logfile);
2950
2951         PQclear(res);
2952         return true;
2953 }
2954
2955 /*
2956  * \dC
2957  *
2958  * Describes casts.
2959  */
2960 bool
2961 listCasts(const char *pattern, bool verbose)
2962 {
2963         PQExpBufferData buf;
2964         PGresult   *res;
2965         printQueryOpt myopt = pset.popt;
2966         static const bool translate_columns[] = {false, false, false, true};
2967
2968         initPQExpBuffer(&buf);
2969
2970         /*
2971          * We need a left join to pg_proc for binary casts; the others are just
2972          * paranoia.  Also note that we don't attempt to localize '(binary
2973          * coercible)', because there's too much risk of gettext translating a
2974          * function name that happens to match some string in the PO database.
2975          */
2976         printfPQExpBuffer(&buf,
2977                            "SELECT pg_catalog.format_type(castsource, NULL) AS \"%s\",\n"
2978                            "       pg_catalog.format_type(casttarget, NULL) AS \"%s\",\n"
2979                                   "       CASE WHEN castfunc = 0 THEN '(binary coercible)'\n"
2980                                           "            ELSE p.proname\n"
2981                                           "       END as \"%s\",\n"
2982                                           "       CASE WHEN c.castcontext = 'e' THEN '%s'\n"
2983                                           "            WHEN c.castcontext = 'a' THEN '%s'\n"
2984                                           "            ELSE '%s'\n"
2985                                           "       END as \"%s\"",
2986                                           gettext_noop("Source type"),
2987                                           gettext_noop("Target type"),
2988                                           gettext_noop("Function"),
2989                                           gettext_noop("no"),
2990                                           gettext_noop("in assignment"),
2991                                           gettext_noop("yes"),
2992                                           gettext_noop("Implicit?"));
2993
2994         if (verbose)
2995                 appendPQExpBuffer(&buf,
2996                                                   ",\n       d.description AS \"%s\"\n",
2997                                                   gettext_noop("Description"));
2998
2999         appendPQExpBuffer(&buf,
3000                                  "FROM pg_catalog.pg_cast c LEFT JOIN pg_catalog.pg_proc p\n"
3001                                           "     ON c.castfunc = p.oid\n"
3002                                           "     LEFT JOIN pg_catalog.pg_type ts\n"
3003                                           "     ON c.castsource = ts.oid\n"
3004                                           "     LEFT JOIN pg_catalog.pg_namespace ns\n"
3005                                           "     ON ns.oid = ts.typnamespace\n"
3006                                           "     LEFT JOIN pg_catalog.pg_type tt\n"
3007                                           "     ON c.casttarget = tt.oid\n"
3008                                           "     LEFT JOIN pg_catalog.pg_namespace nt\n"
3009                                           "     ON nt.oid = tt.typnamespace\n");
3010
3011         if (verbose)
3012                 appendPQExpBuffer(&buf,
3013                                                   "     LEFT JOIN pg_catalog.pg_description d\n"
3014                                                   "     ON d.classoid = c.tableoid AND d.objoid = "
3015                                                   "c.oid AND d.objsubid = 0\n");
3016
3017         appendPQExpBuffer(&buf, "WHERE ( (true");
3018
3019         /*
3020          * Match name pattern against either internal or external name of either
3021          * castsource or casttarget
3022          */
3023         processSQLNamePattern(pset.db, &buf, pattern, true, false,
3024                                                   "ns.nspname", "ts.typname",
3025                                                   "pg_catalog.format_type(ts.oid, NULL)",
3026                                                   "pg_catalog.pg_type_is_visible(ts.oid)");
3027
3028         appendPQExpBuffer(&buf, ") OR (true");
3029
3030         processSQLNamePattern(pset.db, &buf, pattern, true, false,
3031                                                   "nt.nspname", "tt.typname",
3032                                                   "pg_catalog.format_type(tt.oid, NULL)",
3033                                                   "pg_catalog.pg_type_is_visible(tt.oid)");
3034
3035         appendPQExpBuffer(&buf, ") )\nORDER BY 1, 2;");
3036
3037         res = PSQLexec(buf.data, false);
3038         termPQExpBuffer(&buf);
3039         if (!res)
3040                 return false;
3041
3042         myopt.nullPrint = NULL;
3043         myopt.title = _("List of casts");
3044         myopt.translate_header = true;
3045         myopt.translate_columns = translate_columns;
3046
3047         printQuery(res, &myopt, pset.queryFout, pset.logfile);
3048
3049         PQclear(res);
3050         return true;
3051 }
3052
3053 /*
3054  * \dO
3055  *
3056  * Describes collations.
3057  */
3058 bool
3059 listCollations(const char *pattern, bool verbose, bool showSystem)
3060 {
3061         PQExpBufferData buf;
3062         PGresult   *res;
3063         printQueryOpt myopt = pset.popt;
3064         static const bool translate_columns[] = {false, false, false, false, false};
3065
3066         if (pset.sversion < 90100)
3067         {
3068                 fprintf(stderr, _("The server (version %d.%d) does not support collations.\n"),
3069                                 pset.sversion / 10000, (pset.sversion / 100) % 100);
3070                 return true;
3071         }
3072
3073         initPQExpBuffer(&buf);
3074
3075         printfPQExpBuffer(&buf,
3076                                           "SELECT n.nspname AS \"%s\",\n"
3077                                           "       c.collname AS \"%s\",\n"
3078                                           "       c.collcollate AS \"%s\",\n"
3079                                           "       c.collctype AS \"%s\"",
3080                                           gettext_noop("Schema"),
3081                                           gettext_noop("Name"),
3082                                           gettext_noop("Collate"),
3083                                           gettext_noop("Ctype"));
3084
3085         if (verbose)
3086                 appendPQExpBuffer(&buf,
3087                                                   ",\n       pg_catalog.obj_description(c.oid, 'pg_collation') AS \"%s\"",
3088                                                   gettext_noop("Description"));
3089
3090         appendPQExpBuffer(&buf,
3091                           "\nFROM pg_catalog.pg_collation c, pg_catalog.pg_namespace n\n"
3092                                           "WHERE n.oid = c.collnamespace\n");
3093
3094         if (!showSystem && !pattern)
3095                 appendPQExpBuffer(&buf, "      AND n.nspname <> 'pg_catalog'\n"
3096                                                   "      AND n.nspname <> 'information_schema'\n");
3097
3098         /*
3099          * Hide collations that aren't usable in the current database's encoding.
3100          * If you think to change this, note that pg_collation_is_visible rejects
3101          * unusable collations, so you will need to hack name pattern processing
3102          * somehow to avoid inconsistent behavior.
3103          */
3104         appendPQExpBuffer(&buf, "      AND c.collencoding IN (-1, pg_catalog.pg_char_to_encoding(pg_catalog.getdatabaseencoding()))\n");
3105
3106         processSQLNamePattern(pset.db, &buf, pattern, true, false,
3107                                                   "n.nspname", "c.collname", NULL,
3108                                                   "pg_catalog.pg_collation_is_visible(c.oid)");
3109
3110         appendPQExpBuffer(&buf, "ORDER BY 1, 2;");
3111
3112         res = PSQLexec(buf.data, false);
3113         termPQExpBuffer(&buf);
3114         if (!res)
3115                 return false;
3116
3117         myopt.nullPrint = NULL;
3118         myopt.title = _("List of collations");
3119         myopt.translate_header = true;
3120         myopt.translate_columns = translate_columns;
3121
3122         printQuery(res, &myopt, pset.queryFout, pset.logfile);
3123
3124         PQclear(res);
3125         return true;
3126 }
3127
3128 /*
3129  * \dn
3130  *
3131  * Describes schemas (namespaces)
3132  */
3133 bool
3134 listSchemas(const char *pattern, bool verbose, bool showSystem)
3135 {
3136         PQExpBufferData buf;
3137         PGresult   *res;
3138         printQueryOpt myopt = pset.popt;
3139
3140         initPQExpBuffer(&buf);
3141         printfPQExpBuffer(&buf,
3142                                           "SELECT n.nspname AS \"%s\",\n"
3143                                           "  pg_catalog.pg_get_userbyid(n.nspowner) AS \"%s\"",
3144                                           gettext_noop("Name"),
3145                                           gettext_noop("Owner"));
3146
3147         if (verbose)
3148         {
3149                 appendPQExpBuffer(&buf, ",\n  ");
3150                 printACLColumn(&buf, "n.nspacl");
3151                 appendPQExpBuffer(&buf,
3152                   ",\n  pg_catalog.obj_description(n.oid, 'pg_namespace') AS \"%s\"",
3153                                                   gettext_noop("Description"));
3154         }
3155
3156         appendPQExpBuffer(&buf,
3157                                           "\nFROM pg_catalog.pg_namespace n\n");
3158
3159         if (!showSystem && !pattern)
3160                 appendPQExpBuffer(&buf,
3161                 "WHERE n.nspname !~ '^pg_' AND n.nspname <> 'information_schema'\n");
3162
3163         processSQLNamePattern(pset.db, &buf, pattern,
3164                                                   !showSystem && !pattern, false,
3165                                                   NULL, "n.nspname", NULL,
3166                                                   NULL);
3167
3168         appendPQExpBuffer(&buf, "ORDER BY 1;");
3169
3170         res = PSQLexec(buf.data, false);
3171         termPQExpBuffer(&buf);
3172         if (!res)
3173                 return false;
3174
3175         myopt.nullPrint = NULL;
3176         myopt.title = _("List of schemas");
3177         myopt.translate_header = true;
3178
3179         printQuery(res, &myopt, pset.queryFout, pset.logfile);
3180
3181         PQclear(res);
3182         return true;
3183 }
3184
3185
3186 /*
3187  * \dFp
3188  * list text search parsers
3189  */
3190 bool
3191 listTSParsers(const char *pattern, bool verbose)
3192 {
3193         PQExpBufferData buf;
3194         PGresult   *res;
3195         printQueryOpt myopt = pset.popt;
3196
3197         if (pset.sversion < 80300)
3198         {
3199                 fprintf(stderr, _("The server (version %d.%d) does not support full text search.\n"),
3200                                 pset.sversion / 10000, (pset.sversion / 100) % 100);
3201                 return true;
3202         }
3203
3204         if (verbose)
3205                 return listTSParsersVerbose(pattern);
3206
3207         initPQExpBuffer(&buf);
3208
3209         printfPQExpBuffer(&buf,
3210                                           "SELECT \n"
3211                                           "  n.nspname as \"%s\",\n"
3212                                           "  p.prsname as \"%s\",\n"
3213                         "  pg_catalog.obj_description(p.oid, 'pg_ts_parser') as \"%s\"\n"
3214                                           "FROM pg_catalog.pg_ts_parser p \n"
3215                    "LEFT JOIN pg_catalog.pg_namespace n ON n.oid = p.prsnamespace\n",
3216                                           gettext_noop("Schema"),
3217                                           gettext_noop("Name"),
3218                                           gettext_noop("Description")
3219                 );
3220
3221         processSQLNamePattern(pset.db, &buf, pattern, false, false,
3222                                                   "n.nspname", "p.prsname", NULL,
3223                                                   "pg_catalog.pg_ts_parser_is_visible(p.oid)");
3224
3225         appendPQExpBuffer(&buf, "ORDER BY 1, 2;");
3226
3227         res = PSQLexec(buf.data, false);
3228         termPQExpBuffer(&buf);
3229         if (!res)
3230                 return false;
3231
3232         myopt.nullPrint = NULL;
3233         myopt.title = _("List of text search parsers");
3234         myopt.translate_header = true;
3235
3236         printQuery(res, &myopt, pset.queryFout, pset.logfile);
3237
3238         PQclear(res);
3239         return true;
3240 }
3241
3242 /*
3243  * full description of parsers
3244  */
3245 static bool
3246 listTSParsersVerbose(const char *pattern)
3247 {
3248         PQExpBufferData buf;
3249         PGresult   *res;
3250         int                     i;
3251
3252         initPQExpBuffer(&buf);
3253
3254         printfPQExpBuffer(&buf,
3255                                           "SELECT p.oid, \n"
3256                                           "  n.nspname, \n"
3257                                           "  p.prsname \n"
3258                                           "FROM pg_catalog.pg_ts_parser p\n"
3259                         "LEFT JOIN pg_catalog.pg_namespace n ON n.oid = p.prsnamespace\n"
3260                 );
3261
3262         processSQLNamePattern(pset.db, &buf, pattern, false, false,
3263                                                   "n.nspname", "p.prsname", NULL,
3264                                                   "pg_catalog.pg_ts_parser_is_visible(p.oid)");
3265
3266         appendPQExpBuffer(&buf, "ORDER BY 1, 2;");
3267
3268         res = PSQLexec(buf.data, false);
3269         termPQExpBuffer(&buf);
3270         if (!res)
3271                 return false;
3272
3273         if (PQntuples(res) == 0)
3274         {
3275                 if (!pset.quiet)
3276                         fprintf(stderr, _("Did not find any text search parser named \"%s\".\n"),
3277                                         pattern);
3278                 PQclear(res);
3279                 return false;
3280         }
3281
3282         for (i = 0; i < PQntuples(res); i++)
3283         {
3284                 const char *oid;
3285                 const char *nspname = NULL;
3286                 const char *prsname;
3287
3288                 oid = PQgetvalue(res, i, 0);
3289                 if (!PQgetisnull(res, i, 1))
3290                         nspname = PQgetvalue(res, i, 1);
3291                 prsname = PQgetvalue(res, i, 2);
3292
3293                 if (!describeOneTSParser(oid, nspname, prsname))
3294                 {
3295                         PQclear(res);
3296                         return false;
3297                 }
3298
3299                 if (cancel_pressed)
3300                 {
3301                         PQclear(res);
3302                         return false;
3303                 }
3304         }
3305
3306         PQclear(res);
3307         return true;
3308 }
3309
3310 static bool
3311 describeOneTSParser(const char *oid, const char *nspname, const char *prsname)
3312 {
3313         PQExpBufferData buf;
3314         PGresult   *res;
3315         char            title[1024];
3316         printQueryOpt myopt = pset.popt;
3317         static const bool translate_columns[] = {true, false, false};
3318
3319         initPQExpBuffer(&buf);
3320
3321         printfPQExpBuffer(&buf,
3322                                           "SELECT '%s' AS \"%s\", \n"
3323                                           "   p.prsstart::pg_catalog.regproc AS \"%s\", \n"
3324                   "   pg_catalog.obj_description(p.prsstart, 'pg_proc') as \"%s\" \n"
3325                                           " FROM pg_catalog.pg_ts_parser p \n"
3326                                           " WHERE p.oid = '%s' \n"
3327                                           "UNION ALL \n"
3328                                           "SELECT '%s', \n"
3329                                           "   p.prstoken::pg_catalog.regproc, \n"
3330                                         "   pg_catalog.obj_description(p.prstoken, 'pg_proc') \n"
3331                                           " FROM pg_catalog.pg_ts_parser p \n"
3332                                           " WHERE p.oid = '%s' \n"
3333                                           "UNION ALL \n"
3334                                           "SELECT '%s', \n"
3335                                           "   p.prsend::pg_catalog.regproc, \n"
3336                                           "   pg_catalog.obj_description(p.prsend, 'pg_proc') \n"
3337                                           " FROM pg_catalog.pg_ts_parser p \n"
3338                                           " WHERE p.oid = '%s' \n"
3339                                           "UNION ALL \n"
3340                                           "SELECT '%s', \n"
3341                                           "   p.prsheadline::pg_catalog.regproc, \n"
3342                                  "   pg_catalog.obj_description(p.prsheadline, 'pg_proc') \n"
3343                                           " FROM pg_catalog.pg_ts_parser p \n"
3344                                           " WHERE p.oid = '%s' \n"
3345                                           "UNION ALL \n"
3346                                           "SELECT '%s', \n"
3347                                           "   p.prslextype::pg_catalog.regproc, \n"
3348                                   "   pg_catalog.obj_description(p.prslextype, 'pg_proc') \n"
3349                                           " FROM pg_catalog.pg_ts_parser p \n"
3350                                           " WHERE p.oid = '%s';",
3351                                           gettext_noop("Start parse"),
3352                                           gettext_noop("Method"),
3353                                           gettext_noop("Function"),
3354                                           gettext_noop("Description"),
3355                                           oid,
3356                                           gettext_noop("Get next token"),
3357                                           oid,
3358                                           gettext_noop("End parse"),
3359                                           oid,
3360                                           gettext_noop("Get headline"),
3361                                           oid,
3362                                           gettext_noop("Get token types"),
3363                                           oid);
3364
3365         res = PSQLexec(buf.data, false);
3366         termPQExpBuffer(&buf);
3367         if (!res)
3368                 return false;
3369
3370         myopt.nullPrint = NULL;
3371         if (nspname)
3372                 sprintf(title, _("Text search parser \"%s.%s\""), nspname, prsname);
3373         else
3374                 sprintf(title, _("Text search parser \"%s\""), prsname);
3375         myopt.title = title;
3376         myopt.footers = NULL;
3377         myopt.topt.default_footer = false;
3378         myopt.translate_header = true;
3379         myopt.translate_columns = translate_columns;
3380
3381         printQuery(res, &myopt, pset.queryFout, pset.logfile);
3382
3383         PQclear(res);
3384
3385         initPQExpBuffer(&buf);
3386
3387         printfPQExpBuffer(&buf,
3388                                           "SELECT t.alias as \"%s\", \n"
3389                                           "  t.description as \"%s\" \n"
3390                           "FROM pg_catalog.ts_token_type( '%s'::pg_catalog.oid ) as t \n"
3391                                           "ORDER BY 1;",
3392                                           gettext_noop("Token name"),
3393                                           gettext_noop("Description"),
3394                                           oid);
3395
3396         res = PSQLexec(buf.data, false);
3397         termPQExpBuffer(&buf);
3398         if (!res)
3399                 return false;
3400
3401         myopt.nullPrint = NULL;
3402         if (nspname)
3403                 sprintf(title, _("Token types for parser \"%s.%s\""), nspname, prsname);
3404         else
3405                 sprintf(title, _("Token types for parser \"%s\""), prsname);
3406         myopt.title = title;
3407         myopt.footers = NULL;
3408         myopt.topt.default_footer = true;
3409         myopt.translate_header = true;
3410         myopt.translate_columns = NULL;
3411
3412         printQuery(res, &myopt, pset.queryFout, pset.logfile);
3413
3414         PQclear(res);
3415         return true;
3416 }
3417
3418
3419 /*
3420  * \dFd
3421  * list text search dictionaries
3422  */
3423 bool
3424 listTSDictionaries(const char *pattern, bool verbose)
3425 {
3426         PQExpBufferData buf;
3427         PGresult   *res;
3428         printQueryOpt myopt = pset.popt;
3429
3430         if (pset.sversion < 80300)
3431         {
3432                 fprintf(stderr, _("The server (version %d.%d) does not support full text search.\n"),
3433                                 pset.sversion / 10000, (pset.sversion / 100) % 100);
3434                 return true;
3435         }
3436
3437         initPQExpBuffer(&buf);
3438
3439         printfPQExpBuffer(&buf,
3440                                           "SELECT \n"
3441                                           "  n.nspname as \"%s\",\n"
3442                                           "  d.dictname as \"%s\",\n",
3443                                           gettext_noop("Schema"),
3444                                           gettext_noop("Name"));
3445
3446         if (verbose)
3447         {
3448                 appendPQExpBuffer(&buf,
3449                                                   "  ( SELECT COALESCE(nt.nspname, '(null)')::pg_catalog.text || '.' || t.tmplname FROM \n"
3450                                                   "    pg_catalog.pg_ts_template t \n"
3451                                                   "                      LEFT JOIN pg_catalog.pg_namespace nt ON nt.oid = t.tmplnamespace \n"
3452                                                   "                      WHERE d.dicttemplate = t.oid ) AS  \"%s\", \n"
3453                                                   "  d.dictinitoption as \"%s\", \n",
3454                                                   gettext_noop("Template"),
3455                                                   gettext_noop("Init options"));
3456         }
3457
3458         appendPQExpBuffer(&buf,
3459                          "  pg_catalog.obj_description(d.oid, 'pg_ts_dict') as \"%s\"\n",
3460                                           gettext_noop("Description"));
3461
3462         appendPQExpBuffer(&buf, "FROM pg_catalog.pg_ts_dict d\n"
3463                  "LEFT JOIN pg_catalog.pg_namespace n ON n.oid = d.dictnamespace\n");
3464
3465         processSQLNamePattern(pset.db, &buf, pattern, false, false,
3466                                                   "n.nspname", "d.dictname", NULL,
3467                                                   "pg_catalog.pg_ts_dict_is_visible(d.oid)");
3468
3469         appendPQExpBuffer(&buf, "ORDER BY 1, 2;");
3470
3471         res = PSQLexec(buf.data, false);
3472         termPQExpBuffer(&buf);
3473         if (!res)
3474                 return false;
3475
3476         myopt.nullPrint = NULL;
3477         myopt.title = _("List of text search dictionaries");
3478         myopt.translate_header = true;
3479
3480         printQuery(res, &myopt, pset.queryFout, pset.logfile);
3481
3482         PQclear(res);
3483         return true;
3484 }
3485
3486
3487 /*
3488  * \dFt
3489  * list text search templates
3490  */
3491 bool
3492 listTSTemplates(const char *pattern, bool verbose)
3493 {
3494         PQExpBufferData buf;
3495         PGresult   *res;
3496         printQueryOpt myopt = pset.popt;
3497
3498         if (pset.sversion < 80300)
3499         {
3500                 fprintf(stderr, _("The server (version %d.%d) does not support full text search.\n"),
3501                                 pset.sversion / 10000, (pset.sversion / 100) % 100);
3502                 return true;
3503         }
3504
3505         initPQExpBuffer(&buf);
3506
3507         if (verbose)
3508                 printfPQExpBuffer(&buf,
3509                                                   "SELECT \n"
3510                                                   "  n.nspname AS \"%s\",\n"
3511                                                   "  t.tmplname AS \"%s\",\n"
3512                                                   "  t.tmplinit::pg_catalog.regproc AS \"%s\",\n"
3513                                                   "  t.tmpllexize::pg_catalog.regproc AS \"%s\",\n"
3514                  "  pg_catalog.obj_description(t.oid, 'pg_ts_template') AS \"%s\"\n",
3515                                                   gettext_noop("Schema"),
3516                                                   gettext_noop("Name"),
3517                                                   gettext_noop("Init"),
3518                                                   gettext_noop("Lexize"),
3519                                                   gettext_noop("Description"));
3520         else
3521                 printfPQExpBuffer(&buf,
3522                                                   "SELECT \n"
3523                                                   "  n.nspname AS \"%s\",\n"
3524                                                   "  t.tmplname AS \"%s\",\n"
3525                  "  pg_catalog.obj_description(t.oid, 'pg_ts_template') AS \"%s\"\n",
3526                                                   gettext_noop("Schema"),
3527                                                   gettext_noop("Name"),
3528                                                   gettext_noop("Description"));
3529
3530         appendPQExpBuffer(&buf, "FROM pg_catalog.pg_ts_template t\n"
3531                  "LEFT JOIN pg_catalog.pg_namespace n ON n.oid = t.tmplnamespace\n");
3532
3533         processSQLNamePattern(pset.db, &buf, pattern, false, false,
3534                                                   "n.nspname", "t.tmplname", NULL,
3535                                                   "pg_catalog.pg_ts_template_is_visible(t.oid)");
3536
3537         appendPQExpBuffer(&buf, "ORDER BY 1, 2;");
3538
3539         res = PSQLexec(buf.data, false);
3540         termPQExpBuffer(&buf);
3541         if (!res)
3542                 return false;
3543
3544         myopt.nullPrint = NULL;
3545         myopt.title = _("List of text search templates");
3546         myopt.translate_header = true;
3547
3548         printQuery(res, &myopt, pset.queryFout, pset.logfile);
3549
3550         PQclear(res);
3551         return true;
3552 }
3553
3554
3555 /*
3556  * \dF
3557  * list text search configurations
3558  */
3559 bool
3560 listTSConfigs(const char *pattern, bool verbose)
3561 {
3562         PQExpBufferData buf;
3563         PGresult   *res;
3564         printQueryOpt myopt = pset.popt;
3565
3566         if (pset.sversion < 80300)
3567         {
3568                 fprintf(stderr, _("The server (version %d.%d) does not support full text search.\n"),
3569                                 pset.sversion / 10000, (pset.sversion / 100) % 100);
3570                 return true;
3571         }
3572
3573         if (verbose)
3574                 return listTSConfigsVerbose(pattern);
3575
3576         initPQExpBuffer(&buf);
3577
3578         printfPQExpBuffer(&buf,
3579                                           "SELECT \n"
3580                                           "   n.nspname as \"%s\",\n"
3581                                           "   c.cfgname as \"%s\",\n"
3582                    "   pg_catalog.obj_description(c.oid, 'pg_ts_config') as \"%s\"\n"
3583                                           "FROM pg_catalog.pg_ts_config c\n"
3584                   "LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.cfgnamespace \n",
3585                                           gettext_noop("Schema"),
3586                                           gettext_noop("Name"),
3587                                           gettext_noop("Description")
3588                 );
3589
3590         processSQLNamePattern(pset.db, &buf, pattern, false, false,
3591                                                   "n.nspname", "c.cfgname", NULL,
3592                                                   "pg_catalog.pg_ts_config_is_visible(c.oid)");
3593
3594         appendPQExpBuffer(&buf, "ORDER BY 1, 2;");
3595
3596         res = PSQLexec(buf.data, false);
3597         termPQExpBuffer(&buf);
3598         if (!res)
3599                 return false;
3600
3601         myopt.nullPrint = NULL;
3602         myopt.title = _("List of text search configurations");
3603         myopt.translate_header = true;
3604
3605         printQuery(res, &myopt, pset.queryFout, pset.logfile);
3606
3607         PQclear(res);
3608         return true;
3609 }
3610
3611 static bool
3612 listTSConfigsVerbose(const char *pattern)
3613 {
3614         PQExpBufferData buf;
3615         PGresult   *res;
3616         int                     i;
3617
3618         initPQExpBuffer(&buf);
3619
3620         printfPQExpBuffer(&buf,
3621                                           "SELECT c.oid, c.cfgname,\n"
3622                                           "   n.nspname, \n"
3623                                           "   p.prsname, \n"
3624                                           "   np.nspname as pnspname \n"
3625                                           "FROM pg_catalog.pg_ts_config c \n"
3626            "   LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.cfgnamespace, \n"
3627                                           " pg_catalog.pg_ts_parser p \n"
3628           "   LEFT JOIN pg_catalog.pg_namespace np ON np.oid = p.prsnamespace \n"
3629                                           "WHERE  p.oid = c.cfgparser\n"
3630                 );
3631
3632         processSQLNamePattern(pset.db, &buf, pattern, true, false,
3633                                                   "n.nspname", "c.cfgname", NULL,
3634                                                   "pg_catalog.pg_ts_config_is_visible(c.oid)");
3635
3636         appendPQExpBuffer(&buf, "ORDER BY 3, 2;");
3637
3638         res = PSQLexec(buf.data, false);
3639         termPQExpBuffer(&buf);
3640         if (!res)
3641                 return false;
3642
3643         if (PQntuples(res) == 0)
3644         {
3645                 if (!pset.quiet)
3646                         fprintf(stderr, _("Did not find any text search configuration named \"%s\".\n"),
3647                                         pattern);
3648                 PQclear(res);
3649                 return false;
3650         }
3651
3652         for (i = 0; i < PQntuples(res); i++)
3653         {
3654                 const char *oid;
3655                 const char *cfgname;
3656                 const char *nspname = NULL;
3657                 const char *prsname;
3658                 const char *pnspname = NULL;
3659
3660                 oid = PQgetvalue(res, i, 0);
3661                 cfgname = PQgetvalue(res, i, 1);
3662                 if (!PQgetisnull(res, i, 2))
3663                         nspname = PQgetvalue(res, i, 2);
3664                 prsname = PQgetvalue(res, i, 3);
3665                 if (!PQgetisnull(res, i, 4))
3666                         pnspname = PQgetvalue(res, i, 4);
3667
3668                 if (!describeOneTSConfig(oid, nspname, cfgname, pnspname, prsname))
3669                 {
3670                         PQclear(res);
3671                         return false;
3672                 }
3673
3674                 if (cancel_pressed)
3675                 {
3676                         PQclear(res);
3677                         return false;
3678                 }
3679         }
3680
3681         PQclear(res);
3682         return true;
3683 }
3684
3685 static bool
3686 describeOneTSConfig(const char *oid, const char *nspname, const char *cfgname,
3687                                         const char *pnspname, const char *prsname)
3688 {
3689         PQExpBufferData buf,
3690                                 title;
3691         PGresult   *res;
3692         printQueryOpt myopt = pset.popt;
3693
3694         initPQExpBuffer(&buf);
3695
3696         printfPQExpBuffer(&buf,
3697                                           "SELECT \n"
3698                                           "  ( SELECT t.alias FROM \n"
3699                                           "    pg_catalog.ts_token_type(c.cfgparser) AS t \n"
3700                                           "    WHERE t.tokid = m.maptokentype ) AS \"%s\", \n"
3701                                           "  pg_catalog.btrim( \n"
3702                                   "    ARRAY( SELECT mm.mapdict::pg_catalog.regdictionary \n"
3703                                           "           FROM pg_catalog.pg_ts_config_map AS mm \n"
3704                                           "           WHERE mm.mapcfg = m.mapcfg AND mm.maptokentype = m.maptokentype \n"
3705                                           "           ORDER BY mapcfg, maptokentype, mapseqno \n"
3706                                           "    ) :: pg_catalog.text , \n"
3707                                           "  '{}') AS \"%s\" \n"
3708          "FROM pg_catalog.pg_ts_config AS c, pg_catalog.pg_ts_config_map AS m \n"
3709                                           "WHERE c.oid = '%s' AND m.mapcfg = c.oid \n"
3710                                           "GROUP BY m.mapcfg, m.maptokentype, c.cfgparser \n"
3711                                           "ORDER BY 1;",
3712                                           gettext_noop("Token"),
3713                                           gettext_noop("Dictionaries"),
3714                                           oid);
3715
3716         res = PSQLexec(buf.data, false);
3717         termPQExpBuffer(&buf);
3718         if (!res)
3719                 return false;
3720
3721         initPQExpBuffer(&title);
3722
3723         if (nspname)
3724                 appendPQExpBuffer(&title, _("Text search configuration \"%s.%s\""),
3725                                                   nspname, cfgname);
3726         else
3727                 appendPQExpBuffer(&title, _("Text search configuration \"%s\""),
3728                                                   cfgname);
3729
3730         if (pnspname)
3731                 appendPQExpBuffer(&title, _("\nParser: \"%s.%s\""),
3732                                                   pnspname, prsname);
3733         else
3734                 appendPQExpBuffer(&title, _("\nParser: \"%s\""),
3735                                                   prsname);
3736
3737         myopt.nullPrint = NULL;
3738         myopt.title = title.data;
3739         myopt.footers = NULL;
3740         myopt.topt.default_footer = false;
3741         myopt.translate_header = true;
3742
3743         printQuery(res, &myopt, pset.queryFout, pset.logfile);
3744
3745         termPQExpBuffer(&title);
3746
3747         PQclear(res);
3748         return true;
3749 }
3750
3751
3752 /*
3753  * \dew
3754  *
3755  * Describes foreign-data wrappers
3756  */
3757 bool
3758 listForeignDataWrappers(const char *pattern, bool verbose)
3759 {
3760         PQExpBufferData buf;
3761         PGresult   *res;
3762         printQueryOpt myopt = pset.popt;
3763
3764         if (pset.sversion < 80400)
3765         {
3766                 fprintf(stderr, _("The server (version %d.%d) does not support foreign-data wrappers.\n"),
3767                                 pset.sversion / 10000, (pset.sversion / 100) % 100);
3768                 return true;
3769         }
3770
3771         initPQExpBuffer(&buf);
3772         printfPQExpBuffer(&buf,
3773                                           "SELECT fdw.fdwname AS \"%s\",\n"
3774                                    "  pg_catalog.pg_get_userbyid(fdw.fdwowner) AS \"%s\",\n",
3775                                           gettext_noop("Name"),
3776                                           gettext_noop("Owner"));
3777         if (pset.sversion >= 90100)
3778                 appendPQExpBuffer(&buf,
3779                                                   "  fdw.fdwhandler::pg_catalog.regproc AS \"%s\",\n",
3780                                                   gettext_noop("Handler"));
3781         appendPQExpBuffer(&buf,
3782                                           "  fdw.fdwvalidator::pg_catalog.regproc AS \"%s\"",
3783                                           gettext_noop("Validator"));
3784
3785         if (verbose)
3786         {
3787                 appendPQExpBuffer(&buf, ",\n  ");
3788                 printACLColumn(&buf, "fdwacl");
3789                 appendPQExpBuffer(&buf,
3790                                                   ",\n CASE WHEN fdwoptions IS NULL THEN '' ELSE "
3791                                                   "  '(' || array_to_string(ARRAY(SELECT "
3792                                                   "  quote_ident(option_name) ||  ' ' || "
3793                                                   "  quote_literal(option_value)  FROM "
3794                                                   "  pg_options_to_table(fdwoptions)),  ', ') || ')' "
3795                                                   "  END AS \"%s\"",
3796                                                   gettext_noop("FDW Options"));
3797
3798                 if (pset.sversion >= 90100)
3799                         appendPQExpBuffer(&buf,
3800                                                           ",\n  d.description AS \"%s\" ",
3801                                                           gettext_noop("Description"));
3802         }
3803
3804         appendPQExpBuffer(&buf, "\nFROM pg_catalog.pg_foreign_data_wrapper fdw\n");
3805
3806         if (verbose && pset.sversion >= 90100)
3807                 appendPQExpBuffer(&buf,
3808                                                   "LEFT JOIN pg_catalog.pg_description d\n"
3809                                                   "       ON d.classoid = fdw.tableoid "
3810                                                   "AND d.objoid = fdw.oid AND d.objsubid = 0\n");
3811
3812         processSQLNamePattern(pset.db, &buf, pattern, false, false,
3813                                                   NULL, "fdwname", NULL, NULL);
3814
3815         appendPQExpBuffer(&buf, "ORDER BY 1;");
3816
3817         res = PSQLexec(buf.data, false);
3818         termPQExpBuffer(&buf);
3819         if (!res)
3820                 return false;
3821
3822         myopt.nullPrint = NULL;
3823         myopt.title = _("List of foreign-data wrappers");
3824         myopt.translate_header = true;
3825
3826         printQuery(res, &myopt, pset.queryFout, pset.logfile);
3827
3828         PQclear(res);
3829         return true;
3830 }
3831
3832 /*
3833  * \des
3834  *
3835  * Describes foreign servers.
3836  */
3837 bool
3838 listForeignServers(const char *pattern, bool verbose)
3839 {
3840         PQExpBufferData buf;
3841         PGresult   *res;
3842         printQueryOpt myopt = pset.popt;
3843
3844         if (pset.sversion < 80400)
3845         {
3846                 fprintf(stderr, _("The server (version %d.%d) does not support foreign servers.\n"),
3847                                 pset.sversion / 10000, (pset.sversion / 100) % 100);
3848                 return true;
3849         }
3850
3851         initPQExpBuffer(&buf);
3852         printfPQExpBuffer(&buf,
3853                                           "SELECT s.srvname AS \"%s\",\n"
3854                                           "  pg_catalog.pg_get_userbyid(s.srvowner) AS \"%s\",\n"
3855                                           "  f.fdwname AS \"%s\"",
3856                                           gettext_noop("Name"),
3857                                           gettext_noop("Owner"),
3858                                           gettext_noop("Foreign-data wrapper"));
3859
3860         if (verbose)
3861         {
3862                 appendPQExpBuffer(&buf, ",\n  ");
3863                 printACLColumn(&buf, "s.srvacl");
3864                 appendPQExpBuffer(&buf,
3865                                                   ",\n"
3866                                                   "  s.srvtype AS \"%s\",\n"
3867                                                   "  s.srvversion AS \"%s\",\n"
3868                                                   "  CASE WHEN srvoptions IS NULL THEN '' ELSE "
3869                                                   "  '(' || array_to_string(ARRAY(SELECT "
3870                                                   "  quote_ident(option_name) ||  ' ' || "
3871                                                   "  quote_literal(option_value)  FROM "
3872                                                   "  pg_options_to_table(srvoptions)),  ', ') || ')' "
3873                                                   "  END AS \"%s\",\n"
3874                                                   "  d.description AS \"%s\"",
3875                                                   gettext_noop("Type"),
3876                                                   gettext_noop("Version"),
3877                                                   gettext_noop("FDW Options"),
3878                                                   gettext_noop("Description"));
3879         }
3880
3881         appendPQExpBuffer(&buf,
3882                                           "\nFROM pg_catalog.pg_foreign_server s\n"
3883            "     JOIN pg_catalog.pg_foreign_data_wrapper f ON f.oid=s.srvfdw\n");
3884
3885         if (verbose)
3886                 appendPQExpBuffer(&buf,
3887                                                   "LEFT JOIN pg_description d\n       "
3888                                                   "ON d.classoid = s.tableoid AND d.objoid = s.oid "
3889                                                   "AND d.objsubid = 0\n");
3890
3891         processSQLNamePattern(pset.db, &buf, pattern, false, false,
3892                                                   NULL, "s.srvname", NULL, NULL);
3893
3894         appendPQExpBuffer(&buf, "ORDER BY 1;");
3895
3896         res = PSQLexec(buf.data, false);
3897         termPQExpBuffer(&buf);
3898         if (!res)
3899                 return false;
3900
3901         myopt.nullPrint = NULL;
3902         myopt.title = _("List of foreign servers");
3903         myopt.translate_header = true;
3904
3905         printQuery(res, &myopt, pset.queryFout, pset.logfile);
3906
3907         PQclear(res);
3908         return true;
3909 }
3910
3911 /*
3912  * \deu
3913  *
3914  * Describes user mappings.
3915  */
3916 bool
3917 listUserMappings(const char *pattern, bool verbose)
3918 {
3919         PQExpBufferData buf;
3920         PGresult   *res;
3921         printQueryOpt myopt = pset.popt;
3922
3923         if (pset.sversion < 80400)
3924         {
3925                 fprintf(stderr, _("The server (version %d.%d) does not support user mappings.\n"),
3926                                 pset.sversion / 10000, (pset.sversion / 100) % 100);
3927                 return true;
3928         }
3929
3930         initPQExpBuffer(&buf);
3931         printfPQExpBuffer(&buf,
3932                                           "SELECT um.srvname AS \"%s\",\n"
3933                                           "  um.usename AS \"%s\"",
3934                                           gettext_noop("Server"),
3935                                           gettext_noop("User name"));
3936
3937         if (verbose)
3938                 appendPQExpBuffer(&buf,
3939                                                   ",\n CASE WHEN umoptions IS NULL THEN '' ELSE "
3940                                                   "  '(' || array_to_string(ARRAY(SELECT "
3941                                                   "  quote_ident(option_name) ||  ' ' || "
3942                                                   "  quote_literal(option_value)  FROM "
3943                                                   "  pg_options_to_table(umoptions)),  ', ') || ')' "
3944                                                   "  END AS \"%s\"",
3945                                                   gettext_noop("FDW Options"));
3946
3947         appendPQExpBuffer(&buf, "\nFROM pg_catalog.pg_user_mappings um\n");
3948
3949         processSQLNamePattern(pset.db, &buf, pattern, false, false,
3950                                                   NULL, "um.srvname", "um.usename", NULL);
3951
3952         appendPQExpBuffer(&buf, "ORDER BY 1, 2;");
3953
3954         res = PSQLexec(buf.data, false);
3955         termPQExpBuffer(&buf);
3956         if (!res)
3957                 return false;
3958
3959         myopt.nullPrint = NULL;
3960         myopt.title = _("List of user mappings");
3961         myopt.translate_header = true;
3962
3963         printQuery(res, &myopt, pset.queryFout, pset.logfile);
3964
3965         PQclear(res);
3966         return true;
3967 }
3968
3969 /*
3970  * \det
3971  *
3972  * Describes foreign tables.
3973  */
3974 bool
3975 listForeignTables(const char *pattern, bool verbose)
3976 {
3977         PQExpBufferData buf;
3978         PGresult   *res;
3979         printQueryOpt myopt = pset.popt;
3980
3981         if (pset.sversion < 90100)
3982         {
3983                 fprintf(stderr, _("The server (version %d.%d) does not support foreign tables.\n"),
3984                                 pset.sversion / 10000, (pset.sversion / 100) % 100);
3985                 return true;
3986         }
3987
3988         initPQExpBuffer(&buf);
3989         printfPQExpBuffer(&buf,
3990                                           "SELECT n.nspname AS \"%s\",\n"
3991                                           "  c.relname AS \"%s\",\n"
3992                                           "  s.srvname AS \"%s\"",
3993                                           gettext_noop("Schema"),
3994                                           gettext_noop("Table"),
3995                                           gettext_noop("Server"));
3996
3997         if (verbose)
3998                 appendPQExpBuffer(&buf,
3999                                                   ",\n CASE WHEN ftoptions IS NULL THEN '' ELSE "
4000                                                   "  '(' || array_to_string(ARRAY(SELECT "
4001                                                   "  quote_ident(option_name) ||  ' ' || "
4002                                                   "  quote_literal(option_value)  FROM "
4003                                                   "  pg_options_to_table(ftoptions)),  ', ') || ')' "
4004                                                   "  END AS \"%s\",\n"
4005                                                   "  d.description AS \"%s\"",
4006                                                   gettext_noop("FDW Options"),
4007                                                   gettext_noop("Description"));
4008
4009         appendPQExpBuffer(&buf,
4010                                           "\nFROM pg_catalog.pg_foreign_table ft\n"
4011                                           "  INNER JOIN pg_catalog.pg_class c"
4012                                           " ON c.oid = ft.ftrelid\n"
4013                                           "  INNER JOIN pg_catalog.pg_namespace n"
4014                                           " ON n.oid = c.relnamespace\n"
4015                                           "  INNER JOIN pg_catalog.pg_foreign_server s"
4016                                           " ON s.oid = ft.ftserver\n");
4017         if (verbose)
4018                 appendPQExpBuffer(&buf,
4019                                                   "   LEFT JOIN pg_catalog.pg_description d\n"
4020                                                   "          ON d.classoid = c.tableoid AND "
4021                                                   "d.objoid = c.oid AND d.objsubid = 0\n");
4022
4023         processSQLNamePattern(pset.db, &buf, pattern, false, false,
4024                                                   NULL, "n.nspname", "c.relname", NULL);
4025
4026         appendPQExpBuffer(&buf, "ORDER BY 1, 2;");
4027
4028         res = PSQLexec(buf.data, false);
4029         termPQExpBuffer(&buf);
4030         if (!res)
4031                 return false;
4032
4033         myopt.nullPrint = NULL;
4034         myopt.title = _("List of foreign tables");
4035         myopt.translate_header = true;
4036
4037         printQuery(res, &myopt, pset.queryFout, pset.logfile);
4038
4039         PQclear(res);
4040         return true;
4041 }
4042
4043 /*
4044  * \dx
4045  *
4046  * Briefly describes installed extensions.
4047  */
4048 bool
4049 listExtensions(const char *pattern)
4050 {
4051         PQExpBufferData buf;
4052         PGresult   *res;
4053         printQueryOpt myopt = pset.popt;
4054
4055         if (pset.sversion < 90100)
4056         {
4057                 fprintf(stderr, _("The server (version %d.%d) does not support extensions.\n"),
4058                                 pset.sversion / 10000, (pset.sversion / 100) % 100);
4059                 return true;
4060         }
4061
4062         initPQExpBuffer(&buf);
4063         printfPQExpBuffer(&buf,
4064                                           "SELECT e.extname AS \"%s\", "
4065          "e.extversion AS \"%s\", n.nspname AS \"%s\", c.description AS \"%s\"\n"
4066                                           "FROM pg_catalog.pg_extension e "
4067                          "LEFT JOIN pg_catalog.pg_namespace n ON n.oid = e.extnamespace "
4068                                  "LEFT JOIN pg_catalog.pg_description c ON c.objoid = e.oid "
4069                  "AND c.classoid = 'pg_catalog.pg_extension'::pg_catalog.regclass\n",
4070                                           gettext_noop("Name"),
4071                                           gettext_noop("Version"),
4072                                           gettext_noop("Schema"),
4073                                           gettext_noop("Description"));
4074
4075         processSQLNamePattern(pset.db, &buf, pattern,
4076                                                   false, false,
4077                                                   NULL, "e.extname", NULL,
4078                                                   NULL);
4079
4080         appendPQExpBuffer(&buf, "ORDER BY 1;");
4081
4082         res = PSQLexec(buf.data, false);
4083         termPQExpBuffer(&buf);
4084         if (!res)
4085                 return false;
4086
4087         myopt.nullPrint = NULL;
4088         myopt.title = _("List of installed extensions");
4089         myopt.translate_header = true;
4090
4091         printQuery(res, &myopt, pset.queryFout, pset.logfile);
4092
4093         PQclear(res);
4094         return true;
4095 }
4096
4097 /*
4098  * \dx+
4099  *
4100  * List contents of installed extensions.
4101  */
4102 bool
4103 listExtensionContents(const char *pattern)
4104 {
4105         PQExpBufferData buf;
4106         PGresult   *res;
4107         int                     i;
4108
4109         if (pset.sversion < 90100)
4110         {
4111                 fprintf(stderr, _("The server (version %d.%d) does not support extensions.\n"),
4112                                 pset.sversion / 10000, (pset.sversion / 100) % 100);
4113                 return true;
4114         }
4115
4116         initPQExpBuffer(&buf);
4117         printfPQExpBuffer(&buf,
4118                                           "SELECT e.extname, e.oid\n"
4119                                           "FROM pg_catalog.pg_extension e\n");
4120
4121         processSQLNamePattern(pset.db, &buf, pattern,
4122                                                   false, false,
4123                                                   NULL, "e.extname", NULL,
4124                                                   NULL);
4125
4126         appendPQExpBuffer(&buf, "ORDER BY 1;");
4127
4128         res = PSQLexec(buf.data, false);
4129         termPQExpBuffer(&buf);
4130         if (!res)
4131                 return false;
4132
4133         if (PQntuples(res) == 0)
4134         {
4135                 if (!pset.quiet)
4136                 {
4137                         if (pattern)
4138                                 fprintf(stderr, _("Did not find any extension named \"%s\".\n"),
4139                                                 pattern);
4140                         else
4141                                 fprintf(stderr, _("Did not find any extensions.\n"));
4142                 }
4143                 PQclear(res);
4144                 return false;
4145         }
4146
4147         for (i = 0; i < PQntuples(res); i++)
4148         {
4149                 const char *extname;
4150                 const char *oid;
4151
4152                 extname = PQgetvalue(res, i, 0);
4153                 oid = PQgetvalue(res, i, 1);
4154
4155                 if (!listOneExtensionContents(extname, oid))
4156                 {
4157                         PQclear(res);
4158                         return false;
4159                 }
4160                 if (cancel_pressed)
4161                 {
4162                         PQclear(res);
4163                         return false;
4164                 }
4165         }
4166
4167         PQclear(res);
4168         return true;
4169 }
4170
4171 static bool
4172 listOneExtensionContents(const char *extname, const char *oid)
4173 {
4174         PQExpBufferData buf;
4175         PGresult   *res;
4176         char            title[1024];
4177         printQueryOpt myopt = pset.popt;
4178
4179         initPQExpBuffer(&buf);
4180         printfPQExpBuffer(&buf,
4181                 "SELECT pg_catalog.pg_describe_object(classid, objid, 0) AS \"%s\"\n"
4182                                           "FROM pg_catalog.pg_depend\n"
4183                                           "WHERE refclassid = 'pg_catalog.pg_extension'::pg_catalog.regclass AND refobjid = '%s' AND deptype = 'e'\n"
4184                                           "ORDER BY 1;",
4185                                           gettext_noop("Object Description"),
4186                                           oid);
4187
4188         res = PSQLexec(buf.data, false);
4189         termPQExpBuffer(&buf);
4190         if (!res)
4191                 return false;
4192
4193         myopt.nullPrint = NULL;
4194         snprintf(title, sizeof(title), _("Objects in extension \"%s\""), extname);
4195         myopt.title = title;
4196         myopt.translate_header = true;
4197
4198         printQuery(res, &myopt, pset.queryFout, pset.logfile);
4199
4200         PQclear(res);
4201         return true;
4202 }
4203
4204 /*
4205  * printACLColumn
4206  *
4207  * Helper function for consistently formatting ACL (privilege) columns.
4208  * The proper targetlist entry is appended to buf.      Note lack of any
4209  * whitespace or comma decoration.
4210  */
4211 static void
4212 printACLColumn(PQExpBuffer buf, const char *colname)
4213 {
4214         if (pset.sversion >= 80100)
4215                 appendPQExpBuffer(buf,
4216                                                   "pg_catalog.array_to_string(%s, E'\\n') AS \"%s\"",
4217                                                   colname, gettext_noop("Access privileges"));
4218         else
4219                 appendPQExpBuffer(buf,
4220                                                   "pg_catalog.array_to_string(%s, '\\n') AS \"%s\"",
4221                                                   colname, gettext_noop("Access privileges"));
4222 }