]> granicus.if.org Git - postgresql/blobdiff - src/bin/psql/describe.c
psql: Improve display of "for all tables" publications
[postgresql] / src / bin / psql / describe.c
index db568096dcef988c68bccd651b17784531fc6937..1c268f0b08f916dab4e0ee2e56d157ee3145c9b1 100644 (file)
@@ -6,7 +6,7 @@
  * with servers of versions 7.4 and up.  It's okay to omit irrelevant
  * information for an old server, but not to fail outright.
  *
- * Copyright (c) 2000-2015, PostgreSQL Global Development Group
+ * Copyright (c) 2000-2017, PostgreSQL Global Development Group
  *
  * src/bin/psql/describe.c
  */
 
 #include <ctype.h>
 
+#include "catalog/pg_attribute.h"
+#include "catalog/pg_class.h"
 #include "catalog/pg_default_acl.h"
+#include "fe_utils/string_utils.h"
 
 #include "common.h"
 #include "describe.h"
-#include "dumputils.h"
-#include "mbprint.h"
-#include "print.h"
+#include "fe_utils/mbprint.h"
+#include "fe_utils/print.h"
 #include "settings.h"
 #include "variables.h"
 
@@ -123,7 +125,74 @@ describeAggregates(const char *pattern, bool verbose, bool showSystem)
        myopt.title = _("List of aggregate functions");
        myopt.translate_header = true;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
+
+       PQclear(res);
+       return true;
+}
+
+/* \dA
+ * Takes an optional regexp to select particular access methods
+ */
+bool
+describeAccessMethods(const char *pattern, bool verbose)
+{
+       PQExpBufferData buf;
+       PGresult   *res;
+       printQueryOpt myopt = pset.popt;
+       static const bool translate_columns[] = {false, true, false, false};
+
+       if (pset.sversion < 90600)
+       {
+               char            sverbuf[32];
+
+               psql_error("The server (version %s) does not support access methods.\n",
+                                  formatPGVersionNumber(pset.sversion, false,
+                                                                                sverbuf, sizeof(sverbuf)));
+               return true;
+       }
+
+       initPQExpBuffer(&buf);
+
+       printfPQExpBuffer(&buf,
+                                         "SELECT amname AS \"%s\",\n"
+                                         "  CASE amtype"
+                                         " WHEN 'i' THEN '%s'"
+                                         " END AS \"%s\"",
+                                         gettext_noop("Name"),
+                                         gettext_noop("Index"),
+                                         gettext_noop("Type"));
+
+       if (verbose)
+       {
+               appendPQExpBuffer(&buf,
+                                                 ",\n  amhandler AS \"%s\",\n"
+                                         "  pg_catalog.obj_description(oid, 'pg_am') AS \"%s\"",
+                                                 gettext_noop("Handler"),
+                                                 gettext_noop("Description"));
+       }
+
+       appendPQExpBufferStr(&buf,
+                                                "\nFROM pg_catalog.pg_am\n");
+
+       processSQLNamePattern(pset.db, &buf, pattern, false, false,
+                                                 NULL, "amname", NULL,
+                                                 NULL);
+
+       appendPQExpBufferStr(&buf, "ORDER BY 1;");
+
+       res = PSQLexec(buf.data);
+       termPQExpBuffer(&buf);
+       if (!res)
+               return false;
+
+       myopt.nullPrint = NULL;
+       myopt.title = _("List of access methods");
+       myopt.translate_header = true;
+       myopt.translate_columns = translate_columns;
+       myopt.n_translate_columns = lengthof(translate_columns);
+
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -141,8 +210,11 @@ describeTablespaces(const char *pattern, bool verbose)
 
        if (pset.sversion < 80000)
        {
-               psql_error("The server (version %d.%d) does not support tablespaces.\n",
-                                  pset.sversion / 10000, (pset.sversion / 100) % 100);
+               char            sverbuf[32];
+
+               psql_error("The server (version %s) does not support tablespaces.\n",
+                                  formatPGVersionNumber(pset.sversion, false,
+                                                                                sverbuf, sizeof(sverbuf)));
                return true;
        }
 
@@ -204,7 +276,7 @@ describeTablespaces(const char *pattern, bool verbose)
        myopt.title = _("List of tablespaces");
        myopt.translate_header = true;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -234,7 +306,10 @@ describeFunctions(const char *functypes, const char *pattern, bool verbose, bool
        PQExpBufferData buf;
        PGresult   *res;
        printQueryOpt myopt = pset.popt;
-       static const bool translate_columns[] = {false, false, false, false, true, true, true, false, false, false, false};
+       static const bool translate_columns[] = {false, false, false, false, true, true, true, false, true, false, false, false, false};
+
+       /* No "Parallel" column before 9.6 */
+       static const bool translate_columns_pre_96[] = {false, false, false, false, true, true, false, true, false, false, false, false};
 
        if (strlen(functypes) != strspn(functypes, "antwS+"))
        {
@@ -244,8 +319,11 @@ describeFunctions(const char *functypes, const char *pattern, bool verbose, bool
 
        if (showWindow && pset.sversion < 80400)
        {
-               psql_error("\\df does not take a \"w\" option with server version %d.%d\n",
-                                  pset.sversion / 10000, (pset.sversion / 100) % 100);
+               char            sverbuf[32];
+
+               psql_error("\\df does not take a \"w\" option with server version %s\n",
+                                  formatPGVersionNumber(pset.sversion, false,
+                                                                                sverbuf, sizeof(sverbuf)));
                return true;
        }
 
@@ -297,7 +375,7 @@ describeFunctions(const char *functypes, const char *pattern, bool verbose, bool
                                                  "        END ||\n"
                                                  "        CASE\n"
                         "          WHEN COALESCE(p.proargnames[s.i], '') = '' THEN ''\n"
-                                                 "          ELSE p.proargnames[s.i] || ' ' \n"
+                                                 "          ELSE p.proargnames[s.i] || ' '\n"
                                                  "        END ||\n"
                          "        pg_catalog.format_type(p.proallargtypes[s.i], NULL)\n"
                                                  "      FROM\n"
@@ -346,28 +424,45 @@ describeFunctions(const char *functypes, const char *pattern, bool verbose, bool
                                                  gettext_noop("Type"));
 
        if (verbose)
+       {
                appendPQExpBuffer(&buf,
-                                 ",\n CASE WHEN prosecdef THEN '%s' ELSE '%s' END AS \"%s\""
                                                  ",\n CASE\n"
                                                  "  WHEN p.provolatile = 'i' THEN '%s'\n"
                                                  "  WHEN p.provolatile = 's' THEN '%s'\n"
                                                  "  WHEN p.provolatile = 'v' THEN '%s'\n"
-                                                 " END as \"%s\""
-                                  ",\n  pg_catalog.pg_get_userbyid(p.proowner) as \"%s\",\n"
-                                                 "  l.lanname as \"%s\",\n"
-                                                 "  p.prosrc as \"%s\",\n"
-                                 "  pg_catalog.obj_description(p.oid, 'pg_proc') as \"%s\"",
-                                                 gettext_noop("definer"),
-                                                 gettext_noop("invoker"),
-                                                 gettext_noop("Security"),
+                                                 " END as \"%s\"",
                                                  gettext_noop("immutable"),
                                                  gettext_noop("stable"),
                                                  gettext_noop("volatile"),
-                                                 gettext_noop("Volatility"),
+                                                 gettext_noop("Volatility"));
+               if (pset.sversion >= 90600)
+                       appendPQExpBuffer(&buf,
+                                                         ",\n CASE\n"
+                                                         "  WHEN p.proparallel = 'r' THEN '%s'\n"
+                                                         "  WHEN p.proparallel = 's' THEN '%s'\n"
+                                                         "  WHEN p.proparallel = 'u' THEN '%s'\n"
+                                                         " END as \"%s\"",
+                                                         gettext_noop("restricted"),
+                                                         gettext_noop("safe"),
+                                                         gettext_noop("unsafe"),
+                                                         gettext_noop("Parallel"));
+               appendPQExpBuffer(&buf,
+                                          ",\n pg_catalog.pg_get_userbyid(p.proowner) as \"%s\""
+                                ",\n CASE WHEN prosecdef THEN '%s' ELSE '%s' END AS \"%s\"",
                                                  gettext_noop("Owner"),
+                                                 gettext_noop("definer"),
+                                                 gettext_noop("invoker"),
+                                                 gettext_noop("Security"));
+               appendPQExpBufferStr(&buf, ",\n ");
+               printACLColumn(&buf, "p.proacl");
+               appendPQExpBuffer(&buf,
+                                                 ",\n l.lanname as \"%s\""
+                                                 ",\n p.prosrc as \"%s\""
+                               ",\n pg_catalog.obj_description(p.oid, 'pg_proc') as \"%s\"",
                                                  gettext_noop("Language"),
                                                  gettext_noop("Source code"),
                                                  gettext_noop("Description"));
+       }
 
        appendPQExpBufferStr(&buf,
                                                 "\nFROM pg_catalog.pg_proc p"
@@ -466,10 +561,18 @@ describeFunctions(const char *functypes, const char *pattern, bool verbose, bool
        myopt.nullPrint = NULL;
        myopt.title = _("List of functions");
        myopt.translate_header = true;
-       myopt.translate_columns = translate_columns;
-       myopt.n_translate_columns = lengthof(translate_columns);
+       if (pset.sversion >= 90600)
+       {
+               myopt.translate_columns = translate_columns;
+               myopt.n_translate_columns = lengthof(translate_columns);
+       }
+       else
+       {
+               myopt.translate_columns = translate_columns_pre_96;
+               myopt.n_translate_columns = lengthof(translate_columns_pre_96);
+       }
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -511,7 +614,7 @@ describeTypes(const char *pattern, bool verbose, bool showSystem)
                appendPQExpBufferStr(&buf,
                                                         "  pg_catalog.array_to_string(\n"
                                                         "      ARRAY(\n"
-                                                        "                   SELECT e.enumlabel\n"
+                                                        "          SELECT e.enumlabel\n"
                                                         "          FROM pg_catalog.pg_enum e\n"
                                                         "          WHERE e.enumtypid = t.oid\n");
 
@@ -552,7 +655,8 @@ describeTypes(const char *pattern, bool verbose, bool showSystem)
         * composite types
         */
        appendPQExpBufferStr(&buf, "WHERE (t.typrelid = 0 ");
-       appendPQExpBufferStr(&buf, "OR (SELECT c.relkind = 'c' FROM pg_catalog.pg_class c "
+       appendPQExpBufferStr(&buf, "OR (SELECT c.relkind = " CppAsString2(RELKIND_COMPOSITE_TYPE)
+                                                " FROM pg_catalog.pg_class c "
                                                 "WHERE c.oid = t.typrelid))\n");
 
        /*
@@ -585,7 +689,7 @@ describeTypes(const char *pattern, bool verbose, bool showSystem)
        myopt.title = _("List of data types");
        myopt.translate_header = true;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -660,7 +764,7 @@ describeOperators(const char *pattern, bool verbose, bool showSystem)
        myopt.title = _("List of operators");
        myopt.translate_header = true;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -731,7 +835,7 @@ listAllDbs(const char *pattern, bool verbose)
        myopt.title = _("List of databases");
        myopt.translate_header = true;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -759,11 +863,12 @@ permissionsList(const char *pattern)
                                          "SELECT n.nspname as \"%s\",\n"
                                          "  c.relname as \"%s\",\n"
                                          "  CASE c.relkind"
-                                         " WHEN 'r' THEN '%s'"
-                                         " WHEN 'v' THEN '%s'"
-                                         " WHEN 'm' THEN '%s'"
-                                         " WHEN 'S' THEN '%s'"
-                                         " WHEN 'f' THEN '%s'"
+                                         " WHEN " CppAsString2(RELKIND_RELATION) " THEN '%s'"
+                                         " WHEN " CppAsString2(RELKIND_VIEW) " THEN '%s'"
+                                         " WHEN " CppAsString2(RELKIND_MATVIEW) " THEN '%s'"
+                                         " WHEN " CppAsString2(RELKIND_SEQUENCE) " THEN '%s'"
+                                       " WHEN " CppAsString2(RELKIND_FOREIGN_TABLE) " THEN '%s'"
+                               " WHEN " CppAsString2(RELKIND_PARTITIONED_TABLE) " THEN '%s'"
                                          " END as \"%s\",\n"
                                          "  ",
                                          gettext_noop("Schema"),
@@ -773,6 +878,7 @@ permissionsList(const char *pattern)
                                          gettext_noop("materialized view"),
                                          gettext_noop("sequence"),
                                          gettext_noop("foreign table"),
+                                         gettext_noop("table"),        /* partitioned table */
                                          gettext_noop("Type"));
 
        printACLColumn(&buf, "c.relacl");
@@ -786,13 +892,47 @@ permissionsList(const char *pattern)
                                                  "  ), E'\\n') AS \"%s\"",
                                                  gettext_noop("Column privileges"));
 
-       if (pset.sversion >= 90500)
+       if (pset.sversion >= 90500 && pset.sversion < 100000)
+               appendPQExpBuffer(&buf,
+                                                 ",\n  pg_catalog.array_to_string(ARRAY(\n"
+                                                 "    SELECT polname\n"
+                                                 "    || CASE WHEN polcmd != '*' THEN\n"
+                                                 "           E' (' || polcmd || E'):'\n"
+                                                 "       ELSE E':'\n"
+                                                 "       END\n"
+                                                 "    || CASE WHEN polqual IS NOT NULL THEN\n"
+                                                 "           E'\\n  (u): ' || pg_catalog.pg_get_expr(polqual, polrelid)\n"
+                                                 "       ELSE E''\n"
+                                                 "       END\n"
+                                                 "    || CASE WHEN polwithcheck IS NOT NULL THEN\n"
+                                                 "           E'\\n  (c): ' || pg_catalog.pg_get_expr(polwithcheck, polrelid)\n"
+                                                 "       ELSE E''\n"
+                                                 "       END"
+                                                 "    || CASE WHEN polroles <> '{0}' THEN\n"
+                                  "           E'\\n  to: ' || pg_catalog.array_to_string(\n"
+                                                 "               ARRAY(\n"
+                                                 "                   SELECT rolname\n"
+                                                 "                   FROM pg_catalog.pg_roles\n"
+                                                 "                   WHERE oid = ANY (polroles)\n"
+                                                 "                   ORDER BY 1\n"
+                                                 "               ), E', ')\n"
+                                                 "       ELSE E''\n"
+                                                 "       END\n"
+                                                 "    FROM pg_catalog.pg_policy pol\n"
+                                                 "    WHERE polrelid = c.oid), E'\\n')\n"
+                                                 "    AS \"%s\"",
+                                                 gettext_noop("Policies"));
+
+       if (pset.sversion >= 100000)
                appendPQExpBuffer(&buf,
                                                  ",\n  pg_catalog.array_to_string(ARRAY(\n"
                                                  "    SELECT polname\n"
+                                                 "    || CASE WHEN NOT polpermissive THEN\n"
+                                                 "       E' (RESTRICTIVE)'\n"
+                                                 "       ELSE '' END\n"
                                                  "    || CASE WHEN polcmd != '*' THEN\n"
                                                  "           E' (' || polcmd || E'):'\n"
-                                                 "       ELSE E':' \n"
+                                                 "       ELSE E':'\n"
                                                  "       END\n"
                                                  "    || CASE WHEN polqual IS NOT NULL THEN\n"
                                                  "           E'\\n  (u): ' || pg_catalog.pg_get_expr(polqual, polrelid)\n"
@@ -819,7 +959,13 @@ permissionsList(const char *pattern)
 
        appendPQExpBufferStr(&buf, "\nFROM pg_catalog.pg_class c\n"
           "     LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace\n"
-                                                "WHERE c.relkind IN ('r', 'v', 'm', 'S', 'f')\n");
+                                                "WHERE c.relkind IN ("
+                                                CppAsString2(RELKIND_RELATION) ","
+                                                CppAsString2(RELKIND_VIEW) ","
+                                                CppAsString2(RELKIND_MATVIEW) ","
+                                                CppAsString2(RELKIND_SEQUENCE) ","
+                                                CppAsString2(RELKIND_FOREIGN_TABLE) ","
+                                                CppAsString2(RELKIND_PARTITIONED_TABLE) ")\n");
 
        /*
         * Unless a schema pattern is specified, we suppress system and temp
@@ -847,7 +993,7 @@ permissionsList(const char *pattern)
        myopt.translate_columns = translate_columns;
        myopt.n_translate_columns = lengthof(translate_columns);
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        termPQExpBuffer(&buf);
        PQclear(res);
@@ -870,8 +1016,11 @@ listDefaultACLs(const char *pattern)
 
        if (pset.sversion < 90000)
        {
-               psql_error("The server (version %d.%d) does not support altering default privileges.\n",
-                                  pset.sversion / 10000, (pset.sversion / 100) % 100);
+               char            sverbuf[32];
+
+               psql_error("The server (version %s) does not support altering default privileges.\n",
+                                  formatPGVersionNumber(pset.sversion, false,
+                                                                                sverbuf, sizeof(sverbuf)));
                return true;
        }
 
@@ -880,7 +1029,7 @@ listDefaultACLs(const char *pattern)
        printfPQExpBuffer(&buf,
                           "SELECT pg_catalog.pg_get_userbyid(d.defaclrole) AS \"%s\",\n"
                                          "  n.nspname AS \"%s\",\n"
-                                         "  CASE d.defaclobjtype WHEN '%c' THEN '%s' WHEN '%c' THEN '%s' WHEN '%c' THEN '%s' WHEN '%c' THEN '%s' END AS \"%s\",\n"
+                                         "  CASE d.defaclobjtype WHEN '%c' THEN '%s' WHEN '%c' THEN '%s' WHEN '%c' THEN '%s' WHEN '%c' THEN '%s' WHEN '%c' THEN '%s' END AS \"%s\",\n"
                                          "  ",
                                          gettext_noop("Owner"),
                                          gettext_noop("Schema"),
@@ -892,6 +1041,8 @@ listDefaultACLs(const char *pattern)
                                          gettext_noop("function"),
                                          DEFACLOBJ_TYPE,
                                          gettext_noop("type"),
+                                         DEFACLOBJ_NAMESPACE,
+                                         gettext_noop("schema"),
                                          gettext_noop("Type"));
 
        printACLColumn(&buf, "d.defaclacl");
@@ -921,7 +1072,7 @@ listDefaultACLs(const char *pattern)
        myopt.translate_columns = translate_columns;
        myopt.n_translate_columns = lengthof(translate_columns);
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        termPQExpBuffer(&buf);
        PQclear(res);
@@ -1117,7 +1268,7 @@ objectDescription(const char *pattern, bool showSystem)
        myopt.translate_columns = translate_columns;
        myopt.n_translate_columns = lengthof(translate_columns);
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -1218,9 +1369,8 @@ describeOneTableDetails(const char *schemaname,
        bool            printTableInitialized = false;
        int                     i;
        char       *view_def = NULL;
-       char       *headers[9];
+       char       *headers[11];
        char      **seq_values = NULL;
-       char      **modifiers = NULL;
        char      **ptr;
        PQExpBufferData title;
        PQExpBufferData tmpbuf;
@@ -1234,6 +1384,7 @@ describeOneTableDetails(const char *schemaname,
                bool            hasrules;
                bool            hastriggers;
                bool            rowsecurity;
+               bool            forcerowsecurity;
                bool            hasoids;
                Oid                     tablespace;
                char       *reloptions;
@@ -1241,7 +1392,7 @@ describeOneTableDetails(const char *schemaname,
                char            relpersistence;
                char            relreplident;
        }                       tableinfo;
-       bool            show_modifiers = false;
+       bool            show_column_details = false;
        bool            retval;
 
        retval = false;
@@ -1259,8 +1410,8 @@ describeOneTableDetails(const char *schemaname,
        {
                printfPQExpBuffer(&buf,
                          "SELECT c.relchecks, c.relkind, c.relhasindex, c.relhasrules, "
-                                                 "c.relhastriggers, c.relrowsecurity, c.relhasoids, "
-                                                 "%s, c.reltablespace, "
+                               "c.relhastriggers, c.relrowsecurity, c.relforcerowsecurity, "
+                                                 "c.relhasoids, %s, c.reltablespace, "
                                                  "CASE WHEN c.reloftype = 0 THEN '' ELSE c.reloftype::pg_catalog.regtype::pg_catalog.text END, "
                                                  "c.relpersistence, c.relreplident\n"
                                                  "FROM pg_catalog.pg_class c\n "
@@ -1276,7 +1427,7 @@ describeOneTableDetails(const char *schemaname,
        {
                printfPQExpBuffer(&buf,
                          "SELECT c.relchecks, c.relkind, c.relhasindex, c.relhasrules, "
-                                                 "c.relhastriggers, false, c.relhasoids, "
+                                                 "c.relhastriggers, false, false, c.relhasoids, "
                                                  "%s, c.reltablespace, "
                                                  "CASE WHEN c.reloftype = 0 THEN '' ELSE c.reloftype::pg_catalog.regtype::pg_catalog.text END, "
                                                  "c.relpersistence, c.relreplident\n"
@@ -1293,7 +1444,7 @@ describeOneTableDetails(const char *schemaname,
        {
                printfPQExpBuffer(&buf,
                          "SELECT c.relchecks, c.relkind, c.relhasindex, c.relhasrules, "
-                                                 "c.relhastriggers, false, c.relhasoids, "
+                                                 "c.relhastriggers, false, false, c.relhasoids, "
                                                  "%s, c.reltablespace, "
                                                  "CASE WHEN c.reloftype = 0 THEN '' ELSE c.reloftype::pg_catalog.regtype::pg_catalog.text END, "
                                                  "c.relpersistence\n"
@@ -1310,7 +1461,7 @@ describeOneTableDetails(const char *schemaname,
        {
                printfPQExpBuffer(&buf,
                          "SELECT c.relchecks, c.relkind, c.relhasindex, c.relhasrules, "
-                                                 "c.relhastriggers, false, c.relhasoids, "
+                                                 "c.relhastriggers, false, false, c.relhasoids, "
                                                  "%s, c.reltablespace, "
                                                  "CASE WHEN c.reloftype = 0 THEN '' ELSE c.reloftype::pg_catalog.regtype::pg_catalog.text END\n"
                                                  "FROM pg_catalog.pg_class c\n "
@@ -1326,7 +1477,7 @@ describeOneTableDetails(const char *schemaname,
        {
                printfPQExpBuffer(&buf,
                          "SELECT c.relchecks, c.relkind, c.relhasindex, c.relhasrules, "
-                                                 "c.relhastriggers, false, c.relhasoids, "
+                                                 "c.relhastriggers, false, false, c.relhasoids, "
                                                  "%s, c.reltablespace\n"
                                                  "FROM pg_catalog.pg_class c\n "
                   "LEFT JOIN pg_catalog.pg_class tc ON (c.reltoastrelid = tc.oid)\n"
@@ -1341,7 +1492,7 @@ describeOneTableDetails(const char *schemaname,
        {
                printfPQExpBuffer(&buf,
                                          "SELECT relchecks, relkind, relhasindex, relhasrules, "
-                                                 "reltriggers <> 0, false, relhasoids, "
+                                                 "reltriggers <> 0, false, false, relhasoids, "
                                                  "%s, reltablespace\n"
                                                  "FROM pg_catalog.pg_class WHERE oid = '%s';",
                                                  (verbose ?
@@ -1352,7 +1503,7 @@ describeOneTableDetails(const char *schemaname,
        {
                printfPQExpBuffer(&buf,
                                          "SELECT relchecks, relkind, relhasindex, relhasrules, "
-                                                 "reltriggers <> 0, false, relhasoids, "
+                                                 "reltriggers <> 0, false, false, relhasoids, "
                                                  "'', reltablespace\n"
                                                  "FROM pg_catalog.pg_class WHERE oid = '%s';",
                                                  oid);
@@ -1361,7 +1512,7 @@ describeOneTableDetails(const char *schemaname,
        {
                printfPQExpBuffer(&buf,
                                          "SELECT relchecks, relkind, relhasindex, relhasrules, "
-                                                 "reltriggers <> 0, false, relhasoids, "
+                                                 "reltriggers <> 0, false, false, relhasoids, "
                                                  "'', ''\n"
                                                  "FROM pg_catalog.pg_class WHERE oid = '%s';",
                                                  oid);
@@ -1385,18 +1536,19 @@ describeOneTableDetails(const char *schemaname,
        tableinfo.hasrules = strcmp(PQgetvalue(res, 0, 3), "t") == 0;
        tableinfo.hastriggers = strcmp(PQgetvalue(res, 0, 4), "t") == 0;
        tableinfo.rowsecurity = strcmp(PQgetvalue(res, 0, 5), "t") == 0;
-       tableinfo.hasoids = strcmp(PQgetvalue(res, 0, 6), "t") == 0;
+       tableinfo.forcerowsecurity = strcmp(PQgetvalue(res, 0, 6), "t") == 0;
+       tableinfo.hasoids = strcmp(PQgetvalue(res, 0, 7), "t") == 0;
        tableinfo.reloptions = (pset.sversion >= 80200) ?
-               pg_strdup(PQgetvalue(res, 0, 7)) : NULL;
+               pg_strdup(PQgetvalue(res, 0, 8)) : NULL;
        tableinfo.tablespace = (pset.sversion >= 80000) ?
-               atooid(PQgetvalue(res, 0, 8)) : 0;
+               atooid(PQgetvalue(res, 0, 9)) : 0;
        tableinfo.reloftype = (pset.sversion >= 90000 &&
-                                                  strcmp(PQgetvalue(res, 0, 9), "") != 0) ?
-               pg_strdup(PQgetvalue(res, 0, 9)) : NULL;
+                                                  strcmp(PQgetvalue(res, 0, 10), "") != 0) ?
+               pg_strdup(PQgetvalue(res, 0, 10)) : NULL;
        tableinfo.relpersistence = (pset.sversion >= 90100) ?
-               *(PQgetvalue(res, 0, 10)) : 0;
+               *(PQgetvalue(res, 0, 11)) : 0;
        tableinfo.relreplident = (pset.sversion >= 90400) ?
-               *(PQgetvalue(res, 0, 11)) : 'd';
+               *(PQgetvalue(res, 0, 12)) : 'd';
        PQclear(res);
        res = NULL;
 
@@ -1404,7 +1556,7 @@ describeOneTableDetails(const char *schemaname,
         * If it's a sequence, fetch its values and store into an array that will
         * be used later.
         */
-       if (tableinfo.relkind == 'S')
+       if (tableinfo.relkind == RELKIND_SEQUENCE)
        {
                printfPQExpBuffer(&buf, "SELECT * FROM %s", fmtId(schemaname));
                /* must be separate because fmtId isn't reentrant */
@@ -1441,11 +1593,15 @@ describeOneTableDetails(const char *schemaname,
                                                         "   WHERE c.oid = a.attcollation AND t.oid = a.atttypid AND a.attcollation <> t.typcollation) AS attcollation");
        else
                appendPQExpBufferStr(&buf, "\n  NULL AS attcollation");
-       if (tableinfo.relkind == 'i')
+       if (pset.sversion >= 100000)
+               appendPQExpBufferStr(&buf, ", a.attidentity");
+       else
+               appendPQExpBufferStr(&buf, ", ''::\"char\" AS attidentity");
+       if (tableinfo.relkind == RELKIND_INDEX)
                appendPQExpBufferStr(&buf, ",\n  pg_catalog.pg_get_indexdef(a.attrelid, a.attnum, TRUE) AS indexdef");
        else
                appendPQExpBufferStr(&buf, ",\n  NULL AS indexdef");
-       if (tableinfo.relkind == 'f' && pset.sversion >= 90200)
+       if (tableinfo.relkind == RELKIND_FOREIGN_TABLE && pset.sversion >= 90200)
                appendPQExpBufferStr(&buf, ",\n  CASE WHEN attfdwoptions IS NULL THEN '' ELSE "
                                                         "  '(' || array_to_string(ARRAY(SELECT quote_ident(option_name) ||  ' ' || quote_literal(option_value)  FROM "
                                                         "  pg_options_to_table(attfdwoptions)), ', ') || ')' END AS attfdwoptions");
@@ -1460,9 +1616,12 @@ describeOneTableDetails(const char *schemaname,
                 * In 9.0+, we have column comments for: relations, views, composite
                 * types, and foreign tables (c.f. CommentObject() in comment.c).
                 */
-               if (tableinfo.relkind == 'r' || tableinfo.relkind == 'v' ||
-                       tableinfo.relkind == 'm' ||
-                       tableinfo.relkind == 'f' || tableinfo.relkind == 'c')
+               if (tableinfo.relkind == RELKIND_RELATION ||
+                       tableinfo.relkind == RELKIND_VIEW ||
+                       tableinfo.relkind == RELKIND_MATVIEW ||
+                       tableinfo.relkind == RELKIND_FOREIGN_TABLE ||
+                       tableinfo.relkind == RELKIND_COMPOSITE_TYPE ||
+                       tableinfo.relkind == RELKIND_PARTITIONED_TABLE)
                        appendPQExpBufferStr(&buf, ", pg_catalog.col_description(a.attrelid, a.attnum)");
        }
 
@@ -1478,7 +1637,7 @@ describeOneTableDetails(const char *schemaname,
        /* Make title */
        switch (tableinfo.relkind)
        {
-               case 'r':
+               case RELKIND_RELATION:
                        if (tableinfo.relpersistence == 'u')
                                printfPQExpBuffer(&title, _("Unlogged table \"%s.%s\""),
                                                                  schemaname, relationname);
@@ -1486,11 +1645,11 @@ describeOneTableDetails(const char *schemaname,
                                printfPQExpBuffer(&title, _("Table \"%s.%s\""),
                                                                  schemaname, relationname);
                        break;
-               case 'v':
+               case RELKIND_VIEW:
                        printfPQExpBuffer(&title, _("View \"%s.%s\""),
                                                          schemaname, relationname);
                        break;
-               case 'm':
+               case RELKIND_MATVIEW:
                        if (tableinfo.relpersistence == 'u')
                                printfPQExpBuffer(&title, _("Unlogged materialized view \"%s.%s\""),
                                                                  schemaname, relationname);
@@ -1498,11 +1657,11 @@ describeOneTableDetails(const char *schemaname,
                                printfPQExpBuffer(&title, _("Materialized view \"%s.%s\""),
                                                                  schemaname, relationname);
                        break;
-               case 'S':
+               case RELKIND_SEQUENCE:
                        printfPQExpBuffer(&title, _("Sequence \"%s.%s\""),
                                                          schemaname, relationname);
                        break;
-               case 'i':
+               case RELKIND_INDEX:
                        if (tableinfo.relpersistence == 'u')
                                printfPQExpBuffer(&title, _("Unlogged index \"%s.%s\""),
                                                                  schemaname, relationname);
@@ -1515,18 +1674,26 @@ describeOneTableDetails(const char *schemaname,
                        printfPQExpBuffer(&title, _("Special relation \"%s.%s\""),
                                                          schemaname, relationname);
                        break;
-               case 't':
+               case RELKIND_TOASTVALUE:
                        printfPQExpBuffer(&title, _("TOAST table \"%s.%s\""),
                                                          schemaname, relationname);
                        break;
-               case 'c':
+               case RELKIND_COMPOSITE_TYPE:
                        printfPQExpBuffer(&title, _("Composite type \"%s.%s\""),
                                                          schemaname, relationname);
                        break;
-               case 'f':
+               case RELKIND_FOREIGN_TABLE:
                        printfPQExpBuffer(&title, _("Foreign table \"%s.%s\""),
                                                          schemaname, relationname);
                        break;
+               case RELKIND_PARTITIONED_TABLE:
+                       if (tableinfo.relpersistence == 'u')
+                               printfPQExpBuffer(&title, _("Unlogged table \"%s.%s\""),
+                                                                 schemaname, relationname);
+                       else
+                               printfPQExpBuffer(&title, _("Table \"%s.%s\""),
+                                                                 schemaname, relationname);
+                       break;
                default:
                        /* untranslated unknown relkind */
                        printfPQExpBuffer(&title, "?%c? \"%s.%s\"",
@@ -1539,34 +1706,43 @@ describeOneTableDetails(const char *schemaname,
        headers[1] = gettext_noop("Type");
        cols = 2;
 
-       if (tableinfo.relkind == 'r' || tableinfo.relkind == 'v' ||
-               tableinfo.relkind == 'm' ||
-               tableinfo.relkind == 'f' || tableinfo.relkind == 'c')
+       if (tableinfo.relkind == RELKIND_RELATION ||
+               tableinfo.relkind == RELKIND_VIEW ||
+               tableinfo.relkind == RELKIND_MATVIEW ||
+               tableinfo.relkind == RELKIND_FOREIGN_TABLE ||
+               tableinfo.relkind == RELKIND_COMPOSITE_TYPE ||
+               tableinfo.relkind == RELKIND_PARTITIONED_TABLE)
        {
-               show_modifiers = true;
-               headers[cols++] = gettext_noop("Modifiers");
-               modifiers = pg_malloc0((numrows + 1) * sizeof(*modifiers));
+               headers[cols++] = gettext_noop("Collation");
+               headers[cols++] = gettext_noop("Nullable");
+               headers[cols++] = gettext_noop("Default");
+               show_column_details = true;
        }
 
-       if (tableinfo.relkind == 'S')
+       if (tableinfo.relkind == RELKIND_SEQUENCE)
                headers[cols++] = gettext_noop("Value");
 
-       if (tableinfo.relkind == 'i')
+       if (tableinfo.relkind == RELKIND_INDEX)
                headers[cols++] = gettext_noop("Definition");
 
-       if (tableinfo.relkind == 'f' && pset.sversion >= 90200)
-               headers[cols++] = gettext_noop("FDW Options");
+       if (tableinfo.relkind == RELKIND_FOREIGN_TABLE && pset.sversion >= 90200)
+               headers[cols++] = gettext_noop("FDW options");
 
        if (verbose)
        {
                headers[cols++] = gettext_noop("Storage");
-               if (tableinfo.relkind == 'r' || tableinfo.relkind == 'm' ||
-                       tableinfo.relkind == 'f')
+               if (tableinfo.relkind == RELKIND_RELATION ||
+                       tableinfo.relkind == RELKIND_MATVIEW ||
+                       tableinfo.relkind == RELKIND_FOREIGN_TABLE ||
+                       tableinfo.relkind == RELKIND_PARTITIONED_TABLE)
                        headers[cols++] = gettext_noop("Stats target");
                /* Column comments, if the relkind supports this feature. */
-               if (tableinfo.relkind == 'r' || tableinfo.relkind == 'v' ||
-                       tableinfo.relkind == 'm' ||
-                       tableinfo.relkind == 'c' || tableinfo.relkind == 'f')
+               if (tableinfo.relkind == RELKIND_RELATION ||
+                       tableinfo.relkind == RELKIND_VIEW ||
+                       tableinfo.relkind == RELKIND_MATVIEW ||
+                       tableinfo.relkind == RELKIND_COMPOSITE_TYPE ||
+                       tableinfo.relkind == RELKIND_FOREIGN_TABLE ||
+                       tableinfo.relkind == RELKIND_PARTITIONED_TABLE)
                        headers[cols++] = gettext_noop("Description");
        }
 
@@ -1576,8 +1752,9 @@ describeOneTableDetails(const char *schemaname,
        for (i = 0; i < cols; i++)
                printTableAddHeader(&cont, headers[i], true, 'l');
 
-       /* Check if table is a view or materialized view */
-       if ((tableinfo.relkind == 'v' || tableinfo.relkind == 'm') && verbose)
+       /* Get view_def if table is a view or materialized view */
+       if ((tableinfo.relkind == RELKIND_VIEW ||
+                tableinfo.relkind == RELKIND_MATVIEW) && verbose)
        {
                PGresult   *result;
 
@@ -1603,57 +1780,45 @@ describeOneTableDetails(const char *schemaname,
                /* Type */
                printTableAddCell(&cont, PQgetvalue(res, i, 1), false, false);
 
-               /* Modifiers: collate, not null, default */
-               if (show_modifiers)
+               /* Collation, Nullable, Default */
+               if (show_column_details)
                {
-                       resetPQExpBuffer(&tmpbuf);
+                       char       *identity;
+                       char       *default_str = "";
 
-                       if (!PQgetisnull(res, i, 5))
-                       {
-                               if (tmpbuf.len > 0)
-                                       appendPQExpBufferStr(&tmpbuf, " ");
-                               appendPQExpBuffer(&tmpbuf, _("collate %s"),
-                                                                 PQgetvalue(res, i, 5));
-                       }
+                       printTableAddCell(&cont, PQgetvalue(res, i, 5), false, false);
 
-                       if (strcmp(PQgetvalue(res, i, 3), "t") == 0)
-                       {
-                               if (tmpbuf.len > 0)
-                                       appendPQExpBufferStr(&tmpbuf, " ");
-                               appendPQExpBufferStr(&tmpbuf, _("not null"));
-                       }
+                       printTableAddCell(&cont, strcmp(PQgetvalue(res, i, 3), "t") == 0 ? "not null" : "", false, false);
 
-                       /* handle "default" here */
-                       /* (note: above we cut off the 'default' string at 128) */
-                       if (strlen(PQgetvalue(res, i, 2)) != 0)
-                       {
-                               if (tmpbuf.len > 0)
-                                       appendPQExpBufferStr(&tmpbuf, " ");
-                               /* translator: default values of column definitions */
-                               appendPQExpBuffer(&tmpbuf, _("default %s"),
-                                                                 PQgetvalue(res, i, 2));
-                       }
+                       identity = PQgetvalue(res, i, 6);
 
-                       modifiers[i] = pg_strdup(tmpbuf.data);
-                       printTableAddCell(&cont, modifiers[i], false, false);
+                       if (!identity[0])
+                               /* (note: above we cut off the 'default' string at 128) */
+                               default_str = PQgetvalue(res, i, 2);
+                       else if (identity[0] == ATTRIBUTE_IDENTITY_ALWAYS)
+                               default_str = "generated always as identity";
+                       else if (identity[0] == ATTRIBUTE_IDENTITY_BY_DEFAULT)
+                               default_str = "generated by default as identity";
+
+                       printTableAddCell(&cont, default_str, false, false);
                }
 
                /* Value: for sequences only */
-               if (tableinfo.relkind == 'S')
+               if (tableinfo.relkind == RELKIND_SEQUENCE)
                        printTableAddCell(&cont, seq_values[i], false, false);
 
                /* Expression for index column */
-               if (tableinfo.relkind == 'i')
-                       printTableAddCell(&cont, PQgetvalue(res, i, 6), false, false);
+               if (tableinfo.relkind == RELKIND_INDEX)
+                       printTableAddCell(&cont, PQgetvalue(res, i, 7), false, false);
 
                /* FDW options for foreign table column, only for 9.2 or later */
-               if (tableinfo.relkind == 'f' && pset.sversion >= 90200)
-                       printTableAddCell(&cont, PQgetvalue(res, i, 7), false, false);
+               if (tableinfo.relkind == RELKIND_FOREIGN_TABLE && pset.sversion >= 90200)
+                       printTableAddCell(&cont, PQgetvalue(res, i, 8), false, false);
 
                /* Storage and Description */
                if (verbose)
                {
-                       int                     firstvcol = 8;
+                       int                     firstvcol = 9;
                        char       *storage = PQgetvalue(res, i, firstvcol);
 
                        /* these strings are literal in our syntax, so not translated. */
@@ -1665,24 +1830,101 @@ describeOneTableDetails(const char *schemaname,
                                                          false, false);
 
                        /* Statistics target, if the relkind supports this feature */
-                       if (tableinfo.relkind == 'r' || tableinfo.relkind == 'm' ||
-                               tableinfo.relkind == 'f')
+                       if (tableinfo.relkind == RELKIND_RELATION ||
+                               tableinfo.relkind == RELKIND_MATVIEW ||
+                               tableinfo.relkind == RELKIND_FOREIGN_TABLE ||
+                               tableinfo.relkind == RELKIND_PARTITIONED_TABLE)
                        {
                                printTableAddCell(&cont, PQgetvalue(res, i, firstvcol + 1),
                                                                  false, false);
                        }
 
                        /* Column comments, if the relkind supports this feature. */
-                       if (tableinfo.relkind == 'r' || tableinfo.relkind == 'v' ||
-                               tableinfo.relkind == 'm' ||
-                               tableinfo.relkind == 'c' || tableinfo.relkind == 'f')
+                       if (tableinfo.relkind == RELKIND_RELATION ||
+                               tableinfo.relkind == RELKIND_VIEW ||
+                               tableinfo.relkind == RELKIND_MATVIEW ||
+                               tableinfo.relkind == RELKIND_COMPOSITE_TYPE ||
+                               tableinfo.relkind == RELKIND_FOREIGN_TABLE ||
+                               tableinfo.relkind == RELKIND_PARTITIONED_TABLE)
                                printTableAddCell(&cont, PQgetvalue(res, i, firstvcol + 2),
                                                                  false, false);
                }
        }
 
        /* Make footers */
-       if (tableinfo.relkind == 'i')
+       if (pset.sversion >= 100000)
+       {
+               /* Get the partition information  */
+               PGresult   *result;
+               char       *parent_name;
+               char       *partdef;
+               char       *partconstraintdef = NULL;
+
+               /* If verbose, also request the partition constraint definition */
+               if (verbose)
+                       printfPQExpBuffer(&buf,
+                                                         "SELECT inhparent::pg_catalog.regclass,"
+                                                       "               pg_get_expr(c.relpartbound, inhrelid),"
+                                                 "             pg_get_partition_constraintdef(inhrelid)"
+                                                         " FROM pg_catalog.pg_class c"
+                                                         " JOIN pg_catalog.pg_inherits"
+                                                         " ON c.oid = inhrelid"
+                                                  " WHERE c.oid = '%s' AND c.relispartition;", oid);
+               else
+                       printfPQExpBuffer(&buf,
+                                                         "SELECT inhparent::pg_catalog.regclass,"
+                                                         "             pg_get_expr(c.relpartbound, inhrelid)"
+                                                         " FROM pg_catalog.pg_class c"
+                                                         " JOIN pg_catalog.pg_inherits"
+                                                         " ON c.oid = inhrelid"
+                                                  " WHERE c.oid = '%s' AND c.relispartition;", oid);
+               result = PSQLexec(buf.data);
+               if (!result)
+                       goto error_return;
+
+               if (PQntuples(result) > 0)
+               {
+                       parent_name = PQgetvalue(result, 0, 0);
+                       partdef = PQgetvalue(result, 0, 1);
+
+                       if (PQnfields(result) == 3)
+                               partconstraintdef = PQgetvalue(result, 0, 2);
+
+                       printfPQExpBuffer(&tmpbuf, _("Partition of: %s %s"), parent_name,
+                                                         partdef);
+                       printTableAddFooter(&cont, tmpbuf.data);
+
+                       if (partconstraintdef)
+                       {
+                               printfPQExpBuffer(&tmpbuf, _("Partition constraint: %s"),
+                                                                 partconstraintdef);
+                               printTableAddFooter(&cont, tmpbuf.data);
+                       }
+
+                       PQclear(result);
+               }
+       }
+
+       if (tableinfo.relkind == RELKIND_PARTITIONED_TABLE)
+       {
+               /* Get the partition key information  */
+               PGresult   *result;
+               char       *partkeydef;
+
+               printfPQExpBuffer(&buf,
+                               "SELECT pg_catalog.pg_get_partkeydef('%s'::pg_catalog.oid);",
+                                                 oid);
+               result = PSQLexec(buf.data);
+               if (!result || PQntuples(result) != 1)
+                       goto error_return;
+
+               partkeydef = PQgetvalue(result, 0, 0);
+               printfPQExpBuffer(&tmpbuf, _("Partition key: %s"), partkeydef);
+               printTableAddFooter(&cont, tmpbuf.data);
+               PQclear(result);
+       }
+
+       if (tableinfo.relkind == RELKIND_INDEX)
        {
                /* Footer information about an index */
                PGresult   *result;
@@ -1781,7 +2023,7 @@ describeOneTableDetails(const char *schemaname,
 
                PQclear(result);
        }
-       else if (tableinfo.relkind == 'S')
+       else if (tableinfo.relkind == RELKIND_SEQUENCE)
        {
                /* Footer information about a sequence */
                PGresult   *result = NULL;
@@ -1789,7 +2031,8 @@ describeOneTableDetails(const char *schemaname,
                /* Get the column that owns this sequence */
                printfPQExpBuffer(&buf, "SELECT pg_catalog.quote_ident(nspname) || '.' ||"
                                                  "\n   pg_catalog.quote_ident(relname) || '.' ||"
-                                                 "\n   pg_catalog.quote_ident(attname)"
+                                                 "\n   pg_catalog.quote_ident(attname),"
+                                                 "\n   d.deptype"
                                                  "\nFROM pg_catalog.pg_class c"
                                        "\nINNER JOIN pg_catalog.pg_depend d ON c.oid=d.refobjid"
                         "\nINNER JOIN pg_catalog.pg_namespace n ON n.oid=c.relnamespace"
@@ -1799,7 +2042,7 @@ describeOneTableDetails(const char *schemaname,
                           "\nWHERE d.classid='pg_catalog.pg_class'::pg_catalog.regclass"
                         "\n AND d.refclassid='pg_catalog.pg_class'::pg_catalog.regclass"
                                                  "\n AND d.objid=%s"
-                                                 "\n AND d.deptype='a'",
+                                                 "\n AND d.deptype IN ('a', 'i')",
                                                  oid);
 
                result = PSQLexec(buf.data);
@@ -1807,9 +2050,19 @@ describeOneTableDetails(const char *schemaname,
                        goto error_return;
                else if (PQntuples(result) == 1)
                {
-                       printfPQExpBuffer(&buf, _("Owned by: %s"),
-                                                         PQgetvalue(result, 0, 0));
-                       printTableAddFooter(&cont, buf.data);
+                       switch (PQgetvalue(result, 0, 1)[0])
+                       {
+                               case 'a':
+                                       printfPQExpBuffer(&buf, _("Owned by: %s"),
+                                                                         PQgetvalue(result, 0, 0));
+                                       printTableAddFooter(&cont, buf.data);
+                                       break;
+                               case 'i':
+                                       printfPQExpBuffer(&buf, _("Sequence for identity column: %s"),
+                                                                         PQgetvalue(result, 0, 0));
+                                       printTableAddFooter(&cont, buf.data);
+                                       break;
+                       }
                }
 
                /*
@@ -1819,8 +2072,10 @@ describeOneTableDetails(const char *schemaname,
                 */
                PQclear(result);
        }
-       else if (tableinfo.relkind == 'r' || tableinfo.relkind == 'm' ||
-                        tableinfo.relkind == 'f')
+       else if (tableinfo.relkind == RELKIND_RELATION ||
+                        tableinfo.relkind == RELKIND_MATVIEW ||
+                        tableinfo.relkind == RELKIND_FOREIGN_TABLE ||
+                        tableinfo.relkind == RELKIND_PARTITIONED_TABLE)
        {
                /* Footer information about a table */
                PGresult   *result = NULL;
@@ -1925,7 +2180,7 @@ describeOneTableDetails(const char *schemaname,
 
                                        /* Print tablespace of the index on the same line */
                                        if (pset.sversion >= 80000)
-                                               add_tablespace_footer(&cont, 'i',
+                                               add_tablespace_footer(&cont, RELKIND_INDEX,
                                                                                   atooid(PQgetvalue(result, i, 11)),
                                                                                          false);
                                }
@@ -1954,7 +2209,7 @@ describeOneTableDetails(const char *schemaname,
                                printTableAddFooter(&cont, _("Check constraints:"));
                                for (i = 0; i < tuples; i++)
                                {
-                                       /* untranslated contraint name and def */
+                                       /* untranslated constraint name and def */
                                        printfPQExpBuffer(&buf, "    \"%s\" %s",
                                                                          PQgetvalue(result, i, 0),
                                                                          PQgetvalue(result, i, 1));
@@ -2030,21 +2285,36 @@ describeOneTableDetails(const char *schemaname,
                /* print any row-level policies */
                if (pset.sversion >= 90500)
                {
-                       printfPQExpBuffer(&buf,
-                                                         "SELECT pol.polname,\n"
-                                                         "CASE WHEN pol.polroles = '{0}' THEN NULL ELSE array_to_string(array(select rolname from pg_roles where oid = any (pol.polroles) order by 1),',') END,\n"
+                       if (pset.sversion >= 100000)
+                               printfPQExpBuffer(&buf,
+                                                                 "SELECT pol.polname, pol.polpermissive,\n"
+                                                                 "CASE WHEN pol.polroles = '{0}' THEN NULL ELSE array_to_string(array(select rolname from pg_roles where oid = any (pol.polroles) order by 1),',') END,\n"
                                           "pg_catalog.pg_get_expr(pol.polqual, pol.polrelid),\n"
                                  "pg_catalog.pg_get_expr(pol.polwithcheck, pol.polrelid),\n"
-                                                         "CASE pol.polcmd \n"
-                                                         "WHEN 'r' THEN 'SELECT'\n"
-                                                         "WHEN 'a' THEN 'INSERT'\n"
-                                                         "WHEN 'w' THEN 'UPDATE'\n"
-                                                         "WHEN 'd' THEN 'DELETE'\n"
-                                                         "WHEN '*' THEN 'ALL'\n"
-                                                         "END AS cmd\n"
-                                                         "FROM pg_catalog.pg_policy pol\n"
-                                                         "WHERE pol.polrelid = '%s' ORDER BY 1;",
-                                                         oid);
+                                                                 "CASE pol.polcmd\n"
+                                                                 "WHEN 'r' THEN 'SELECT'\n"
+                                                                 "WHEN 'a' THEN 'INSERT'\n"
+                                                                 "WHEN 'w' THEN 'UPDATE'\n"
+                                                                 "WHEN 'd' THEN 'DELETE'\n"
+                                                                 "END AS cmd\n"
+                                                                 "FROM pg_catalog.pg_policy pol\n"
+                                                                 "WHERE pol.polrelid = '%s' ORDER BY 1;",
+                                                                 oid);
+                       else
+                               printfPQExpBuffer(&buf,
+                                                               "SELECT pol.polname, 't' as polpermissive,\n"
+                                                                 "CASE WHEN pol.polroles = '{0}' THEN NULL ELSE array_to_string(array(select rolname from pg_roles where oid = any (pol.polroles) order by 1),',') END,\n"
+                                          "pg_catalog.pg_get_expr(pol.polqual, pol.polrelid),\n"
+                                 "pg_catalog.pg_get_expr(pol.polwithcheck, pol.polrelid),\n"
+                                                                 "CASE pol.polcmd\n"
+                                                                 "WHEN 'r' THEN 'SELECT'\n"
+                                                                 "WHEN 'a' THEN 'INSERT'\n"
+                                                                 "WHEN 'w' THEN 'UPDATE'\n"
+                                                                 "WHEN 'd' THEN 'DELETE'\n"
+                                                                 "END AS cmd\n"
+                                                                 "FROM pg_catalog.pg_policy pol\n"
+                                                                 "WHERE pol.polrelid = '%s' ORDER BY 1;",
+                                                                 oid);
 
                        result = PSQLexec(buf.data);
                        if (!result)
@@ -2057,14 +2327,20 @@ describeOneTableDetails(const char *schemaname,
                         * there aren't policies, or RLS isn't enabled but there are
                         * policies
                         */
-                       if (tableinfo.rowsecurity && tuples > 0)
+                       if (tableinfo.rowsecurity && !tableinfo.forcerowsecurity && tuples > 0)
                                printTableAddFooter(&cont, _("Policies:"));
 
-                       if (tableinfo.rowsecurity && tuples == 0)
-                               printTableAddFooter(&cont, _("Policies (Row Security Enabled): (None)"));
+                       if (tableinfo.rowsecurity && tableinfo.forcerowsecurity && tuples > 0)
+                               printTableAddFooter(&cont, _("Policies (forced row security enabled):"));
+
+                       if (tableinfo.rowsecurity && !tableinfo.forcerowsecurity && tuples == 0)
+                               printTableAddFooter(&cont, _("Policies (row security enabled): (none)"));
+
+                       if (tableinfo.rowsecurity && tableinfo.forcerowsecurity && tuples == 0)
+                               printTableAddFooter(&cont, _("Policies (forced row security enabled): (none)"));
 
                        if (!tableinfo.rowsecurity && tuples > 0)
-                               printTableAddFooter(&cont, _("Policies (Row Security Disabled):"));
+                               printTableAddFooter(&cont, _("Policies (row security disabled):"));
 
                        /* Might be an empty set - that's ok */
                        for (i = 0; i < tuples; i++)
@@ -2072,32 +2348,97 @@ describeOneTableDetails(const char *schemaname,
                                printfPQExpBuffer(&buf, "    POLICY \"%s\"",
                                                                  PQgetvalue(result, i, 0));
 
-                               if (!PQgetisnull(result, i, 4))
+                               if (*(PQgetvalue(result, i, 1)) == 'f')
+                                       appendPQExpBuffer(&buf, " AS RESTRICTIVE");
+
+                               if (!PQgetisnull(result, i, 5))
                                        appendPQExpBuffer(&buf, " FOR %s",
-                                                                         PQgetvalue(result, i, 4));
+                                                                         PQgetvalue(result, i, 5));
 
-                               if (!PQgetisnull(result, i, 1))
+                               if (!PQgetisnull(result, i, 2))
                                {
                                        appendPQExpBuffer(&buf, "\n      TO %s",
-                                                                         PQgetvalue(result, i, 1));
-                               }
-
-                               if (!PQgetisnull(result, i, 2))
-                                       appendPQExpBuffer(&buf, "\n      USING %s",
                                                                          PQgetvalue(result, i, 2));
+                               }
 
                                if (!PQgetisnull(result, i, 3))
-                                       appendPQExpBuffer(&buf, "\n      WITH CHECK %s",
+                                       appendPQExpBuffer(&buf, "\n      USING (%s)",
                                                                          PQgetvalue(result, i, 3));
 
+                               if (!PQgetisnull(result, i, 4))
+                                       appendPQExpBuffer(&buf, "\n      WITH CHECK (%s)",
+                                                                         PQgetvalue(result, i, 4));
+
                                printTableAddFooter(&cont, buf.data);
 
                        }
                        PQclear(result);
                }
 
+               /* print any extended statistics */
+               if (pset.sversion >= 100000)
+               {
+                       printfPQExpBuffer(&buf,
+                                                         "SELECT oid, "
+                                                         "stxrelid::pg_catalog.regclass, "
+                                                         "stxnamespace::pg_catalog.regnamespace AS nsp, "
+                                                         "stxname,\n"
+                                                         "  (SELECT pg_catalog.string_agg(pg_catalog.quote_ident(attname),', ')\n"
+                                                         "   FROM pg_catalog.unnest(stxkeys) s(attnum)\n"
+                                                         "   JOIN pg_catalog.pg_attribute a ON (stxrelid = a.attrelid AND\n"
+                       "        a.attnum = s.attnum AND NOT attisdropped)) AS columns,\n"
+                                                         "  (stxkind @> '{d}') AS ndist_enabled,\n"
+                                                         "  (stxkind @> '{f}') AS deps_enabled\n"
+                                                         "FROM pg_catalog.pg_statistic_ext stat "
+                                                         "WHERE stxrelid = '%s'\n"
+                                                         "ORDER BY 1;",
+                                                         oid);
+
+                       result = PSQLexec(buf.data);
+                       if (!result)
+                               goto error_return;
+                       else
+                               tuples = PQntuples(result);
+
+                       if (tuples > 0)
+                       {
+                               printTableAddFooter(&cont, _("Statistics objects:"));
+
+                               for (i = 0; i < tuples; i++)
+                               {
+                                       bool            gotone = false;
+
+                                       printfPQExpBuffer(&buf, "    ");
+
+                                       /* statistics object name (qualified with namespace) */
+                                       appendPQExpBuffer(&buf, "\"%s\".\"%s\" (",
+                                                                         PQgetvalue(result, i, 2),
+                                                                         PQgetvalue(result, i, 3));
+
+                                       /* options */
+                                       if (strcmp(PQgetvalue(result, i, 5), "t") == 0)
+                                       {
+                                               appendPQExpBufferStr(&buf, "ndistinct");
+                                               gotone = true;
+                                       }
+
+                                       if (strcmp(PQgetvalue(result, i, 6), "t") == 0)
+                                       {
+                                               appendPQExpBuffer(&buf, "%sdependencies", gotone ? ", " : "");
+                                       }
+
+                                       appendPQExpBuffer(&buf, ") ON %s FROM %s",
+                                                                         PQgetvalue(result, i, 4),
+                                                                         PQgetvalue(result, i, 1));
+
+                                       printTableAddFooter(&cont, buf.data);
+                               }
+                       }
+                       PQclear(result);
+               }
+
                /* print rules */
-               if (tableinfo.hasrules && tableinfo.relkind != 'm')
+               if (tableinfo.hasrules && tableinfo.relkind != RELKIND_MATVIEW)
                {
                        if (pset.sversion >= 80300)
                        {
@@ -2190,6 +2531,37 @@ describeOneTableDetails(const char *schemaname,
                        }
                        PQclear(result);
                }
+
+               /* print any publications */
+               if (pset.sversion >= 100000)
+               {
+                       printfPQExpBuffer(&buf,
+                                                         "SELECT pub.pubname\n"
+                                                         " FROM pg_catalog.pg_publication pub,\n"
+                                 "      pg_catalog.pg_get_publication_tables(pub.pubname)\n"
+                                                         "WHERE relid = '%s'\n"
+                                                         "ORDER BY 1;",
+                                                         oid);
+
+                       result = PSQLexec(buf.data);
+                       if (!result)
+                               goto error_return;
+                       else
+                               tuples = PQntuples(result);
+
+                       if (tuples > 0)
+                               printTableAddFooter(&cont, _("Publications:"));
+
+                       /* Might be an empty set - that's ok */
+                       for (i = 0; i < tuples; i++)
+                       {
+                               printfPQExpBuffer(&buf, "    \"%s\"",
+                                                                 PQgetvalue(result, i, 0));
+
+                               printTableAddFooter(&cont, buf.data);
+                       }
+                       PQclear(result);
+               }
        }
 
        if (view_def)
@@ -2372,14 +2744,16 @@ describeOneTableDetails(const char *schemaname,
        /*
         * Finish printing the footer information about a table.
         */
-       if (tableinfo.relkind == 'r' || tableinfo.relkind == 'm' ||
-               tableinfo.relkind == 'f')
+       if (tableinfo.relkind == RELKIND_RELATION ||
+               tableinfo.relkind == RELKIND_MATVIEW ||
+               tableinfo.relkind == RELKIND_FOREIGN_TABLE ||
+               tableinfo.relkind == RELKIND_PARTITIONED_TABLE)
        {
                PGresult   *result;
                int                     tuples;
 
                /* print foreign server name */
-               if (tableinfo.relkind == 'f')
+               if (tableinfo.relkind == RELKIND_FOREIGN_TABLE)
                {
                        char       *ftoptions;
 
@@ -2404,7 +2778,7 @@ describeOneTableDetails(const char *schemaname,
                        }
 
                        /* Print server name */
-                       printfPQExpBuffer(&buf, "Server: %s",
+                       printfPQExpBuffer(&buf, _("Server: %s"),
                                                          PQgetvalue(result, 0, 0));
                        printTableAddFooter(&cont, buf.data);
 
@@ -2412,14 +2786,19 @@ describeOneTableDetails(const char *schemaname,
                        ftoptions = PQgetvalue(result, 0, 1);
                        if (ftoptions && ftoptions[0] != '\0')
                        {
-                               printfPQExpBuffer(&buf, "FDW Options: (%s)", ftoptions);
+                               printfPQExpBuffer(&buf, _("FDW options: (%s)"), ftoptions);
                                printTableAddFooter(&cont, buf.data);
                        }
                        PQclear(result);
                }
 
-               /* print inherited tables */
-               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);
+               /* print inherited tables (exclude, if parent is a partitioned table) */
+               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'"
+                                " AND c.relkind != " CppAsString2(RELKIND_PARTITIONED_TABLE)
+                                                 " ORDER BY inhseqno;", oid);
 
                result = PSQLexec(buf.data);
                if (!result)
@@ -2440,7 +2819,7 @@ describeOneTableDetails(const char *schemaname,
                                        printfPQExpBuffer(&buf, "%*s  %s",
                                                                          sw, "", PQgetvalue(result, i, 0));
                                if (i < tuples - 1)
-                                       appendPQExpBufferStr(&buf, ",");
+                                       appendPQExpBufferChar(&buf, ',');
 
                                printTableAddFooter(&cont, buf.data);
                        }
@@ -2448,9 +2827,23 @@ describeOneTableDetails(const char *schemaname,
                        PQclear(result);
                }
 
-               /* print child tables */
-               if (pset.sversion >= 80300)
-                       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);
+               /* print child tables (with additional info if partitions) */
+               if (pset.sversion >= 100000)
+                       printfPQExpBuffer(&buf,
+                                                         "SELECT c.oid::pg_catalog.regclass, pg_get_expr(c.relpartbound, c.oid)"
+                                         " FROM pg_catalog.pg_class c, pg_catalog.pg_inherits i"
+                                                         " WHERE c.oid=i.inhrelid AND"
+                                                         " i.inhparent = '%s' AND"
+                                         " EXISTS (SELECT 1 FROM pg_class c WHERE c.oid = '%s')"
+                                                         " ORDER BY c.oid::pg_catalog.regclass::pg_catalog.text;", oid, oid);
+               else if (pset.sversion >= 80300)
+                       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' AND"
+                                         " EXISTS (SELECT 1 FROM pg_class c WHERE c.oid = '%s')"
+                                                         " ORDER BY c.oid::pg_catalog.regclass::pg_catalog.text;", oid, oid);
                else
                        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);
 
@@ -2465,24 +2858,40 @@ describeOneTableDetails(const char *schemaname,
                        /* print the number of child tables, if any */
                        if (tuples > 0)
                        {
-                               printfPQExpBuffer(&buf, _("Number of child tables: %d (Use \\d+ to list them.)"), tuples);
+                               if (tableinfo.relkind != RELKIND_PARTITIONED_TABLE)
+                                       printfPQExpBuffer(&buf, _("Number of child tables: %d (Use \\d+ to list them.)"), tuples);
+                               else
+                                       printfPQExpBuffer(&buf, _("Number of partitions: %d (Use \\d+ to list them.)"), tuples);
                                printTableAddFooter(&cont, buf.data);
                        }
                }
                else
                {
                        /* display the list of child tables */
-                       const char *ct = _("Child tables");
+                       const char *ct = (tableinfo.relkind != RELKIND_PARTITIONED_TABLE) ?
+                       _("Child tables") : _("Partitions");
                        int                     ctw = pg_wcswidth(ct, strlen(ct), pset.encoding);
 
                        for (i = 0; i < tuples; i++)
                        {
-                               if (i == 0)
-                                       printfPQExpBuffer(&buf, "%s: %s",
-                                                                         ct, PQgetvalue(result, i, 0));
+                               if (tableinfo.relkind != RELKIND_PARTITIONED_TABLE)
+                               {
+                                       if (i == 0)
+                                               printfPQExpBuffer(&buf, "%s: %s",
+                                                                                 ct, PQgetvalue(result, i, 0));
+                                       else
+                                               printfPQExpBuffer(&buf, "%*s  %s",
+                                                                                 ctw, "", PQgetvalue(result, i, 0));
+                               }
                                else
-                                       printfPQExpBuffer(&buf, "%*s  %s",
-                                                                         ctw, "", PQgetvalue(result, i, 0));
+                               {
+                                       if (i == 0)
+                                               printfPQExpBuffer(&buf, "%s: %s %s",
+                                                                                 ct, PQgetvalue(result, i, 0), PQgetvalue(result, i, 1));
+                                       else
+                                               printfPQExpBuffer(&buf, "%*s  %s %s",
+                                                                                 ctw, "", PQgetvalue(result, i, 0), PQgetvalue(result, i, 1));
+                               }
                                if (i < tuples - 1)
                                        appendPQExpBufferChar(&buf, ',');
 
@@ -2498,10 +2907,12 @@ describeOneTableDetails(const char *schemaname,
                        printTableAddFooter(&cont, buf.data);
                }
 
-               if (verbose && (tableinfo.relkind == 'r' || tableinfo.relkind == 'm') &&
+               if (verbose &&
+                       (tableinfo.relkind == RELKIND_RELATION ||
+                        tableinfo.relkind == RELKIND_MATVIEW) &&
 
                /*
-                * No need to display default values;  we already display a REPLICA
+                * No need to display default values; we already display a REPLICA
                 * IDENTITY marker on indexes.
                 */
                        tableinfo.relreplident != 'i' &&
@@ -2520,7 +2931,7 @@ describeOneTableDetails(const char *schemaname,
                }
 
                /* OIDs, if verbose and not a materialized view */
-               if (verbose && tableinfo.relkind != 'm' && tableinfo.hasoids)
+               if (verbose && tableinfo.relkind != RELKIND_MATVIEW && tableinfo.hasoids)
                        printTableAddFooter(&cont, _("Has OIDs: yes"));
 
                /* Tablespace info */
@@ -2538,8 +2949,7 @@ describeOneTableDetails(const char *schemaname,
                printTableAddFooter(&cont, buf.data);
        }
 
-       printTable(&cont, pset.queryFout, pset.logfile);
-       printTableCleanup(&cont);
+       printTable(&cont, pset.queryFout, false, pset.logfile);
 
        retval = true;
 
@@ -2559,13 +2969,6 @@ error_return:
                free(seq_values);
        }
 
-       if (modifiers)
-       {
-               for (ptr = modifiers; *ptr; ptr++)
-                       free(*ptr);
-               free(modifiers);
-       }
-
        if (view_def)
                free(view_def);
 
@@ -2585,7 +2988,10 @@ add_tablespace_footer(printTableContent *const cont, char relkind,
                                          Oid tablespace, const bool newline)
 {
        /* relkinds for which we support tablespaces */
-       if (relkind == 'r' || relkind == 'm' || relkind == 'i')
+       if (relkind == RELKIND_RELATION ||
+               relkind == RELKIND_MATVIEW ||
+               relkind == RELKIND_INDEX ||
+               relkind == RELKIND_PARTITIONED_TABLE)
        {
                /*
                 * We ignore the database default tablespace so that users not using
@@ -2639,7 +3045,7 @@ add_tablespace_footer(printTableContent *const cont, char relkind,
  * Describes roles.  Any schema portion of the pattern is ignored.
  */
 bool
-describeRoles(const char *pattern, bool verbose)
+describeRoles(const char *pattern, bool verbose, bool showSystem)
 {
        PQExpBufferData buf;
        PGresult   *res;
@@ -2684,6 +3090,9 @@ describeRoles(const char *pattern, bool verbose)
 
                appendPQExpBufferStr(&buf, "\nFROM pg_catalog.pg_roles r\n");
 
+               if (!showSystem && !pattern)
+                       appendPQExpBufferStr(&buf, "WHERE r.rolname !~ '^pg_'\n");
+
                processSQLNamePattern(pset.db, &buf, pattern, false, false,
                                                          NULL, "r.rolname", NULL, NULL);
        }
@@ -2783,7 +3192,7 @@ describeRoles(const char *pattern, bool verbose)
        }
        termPQExpBuffer(&buf);
 
-       printTable(&cont, pset.queryFout, pset.logfile);
+       printTable(&cont, pset.queryFout, false, pset.logfile);
        printTableCleanup(&cont);
 
        for (i = 0; i < nrows; i++)
@@ -2857,7 +3266,7 @@ listDbRoleSettings(const char *pattern, const char *pattern2)
                myopt.title = _("List of settings");
                myopt.translate_header = true;
 
-               printQuery(res, &myopt, pset.queryFout, pset.logfile);
+               printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
        }
 
        PQclear(res);
@@ -2902,20 +3311,21 @@ listTables(const char *tabtypes, const char *pattern, bool verbose, bool showSys
        initPQExpBuffer(&buf);
 
        /*
-        * Note: as of Pg 8.2, we no longer use relkind 's', but we keep it here
-        * for backwards compatibility.
+        * Note: as of Pg 8.2, we no longer use relkind 's' (special), but we keep
+        * it here for backwards compatibility.
         */
        printfPQExpBuffer(&buf,
                                          "SELECT n.nspname as \"%s\",\n"
                                          "  c.relname as \"%s\",\n"
                                          "  CASE c.relkind"
-                                         " WHEN 'r' THEN '%s'"
-                                         " WHEN 'v' THEN '%s'"
-                                         " WHEN 'm' THEN '%s'"
-                                         " WHEN 'i' THEN '%s'"
-                                         " WHEN 'S' THEN '%s'"
+                                         " WHEN " CppAsString2(RELKIND_RELATION) " THEN '%s'"
+                                         " WHEN " CppAsString2(RELKIND_VIEW) " THEN '%s'"
+                                         " WHEN " CppAsString2(RELKIND_MATVIEW) " THEN '%s'"
+                                         " WHEN " CppAsString2(RELKIND_INDEX) " THEN '%s'"
+                                         " WHEN " CppAsString2(RELKIND_SEQUENCE) " THEN '%s'"
                                          " WHEN 's' THEN '%s'"
-                                         " WHEN 'f' THEN '%s'"
+                                       " WHEN " CppAsString2(RELKIND_FOREIGN_TABLE) " THEN '%s'"
+                               " WHEN " CppAsString2(RELKIND_PARTITIONED_TABLE) " THEN '%s'"
                                          " END as \"%s\",\n"
                                          "  pg_catalog.pg_get_userbyid(c.relowner) as \"%s\"",
                                          gettext_noop("Schema"),
@@ -2927,6 +3337,7 @@ listTables(const char *tabtypes, const char *pattern, bool verbose, bool showSys
                                          gettext_noop("sequence"),
                                          gettext_noop("special"),
                                          gettext_noop("foreign table"),
+                                         gettext_noop("table"),        /* partitioned table */
                                          gettext_noop("Type"),
                                          gettext_noop("Owner"));
 
@@ -2938,7 +3349,7 @@ listTables(const char *tabtypes, const char *pattern, bool verbose, bool showSys
        if (verbose)
        {
                /*
-                * As of PostgreSQL 9.0, use pg_table_size() to show a more acurate
+                * As of PostgreSQL 9.0, use pg_table_size() to show a more accurate
                 * size of a table, including FSM, VM and TOAST tables.
                 */
                if (pset.sversion >= 90000)
@@ -2965,20 +3376,20 @@ listTables(const char *tabtypes, const char *pattern, bool verbose, bool showSys
 
        appendPQExpBufferStr(&buf, "\nWHERE c.relkind IN (");
        if (showTables)
-               appendPQExpBufferStr(&buf, "'r',");
+               appendPQExpBufferStr(&buf, CppAsString2(RELKIND_RELATION) ","
+                                                        CppAsString2(RELKIND_PARTITIONED_TABLE) ",");
        if (showViews)
-               appendPQExpBufferStr(&buf, "'v',");
+               appendPQExpBufferStr(&buf, CppAsString2(RELKIND_VIEW) ",");
        if (showMatViews)
-               appendPQExpBufferStr(&buf, "'m',");
+               appendPQExpBufferStr(&buf, CppAsString2(RELKIND_MATVIEW) ",");
        if (showIndexes)
-               appendPQExpBufferStr(&buf, "'i',");
+               appendPQExpBufferStr(&buf, CppAsString2(RELKIND_INDEX) ",");
        if (showSeq)
-               appendPQExpBufferStr(&buf, "'S',");
+               appendPQExpBufferStr(&buf, CppAsString2(RELKIND_SEQUENCE) ",");
        if (showSystem || pattern)
-               appendPQExpBufferStr(&buf, "'s',");             /* was RELKIND_SPECIAL in <=
-                                                                                                * 8.1 */
+               appendPQExpBufferStr(&buf, "'s',");             /* was RELKIND_SPECIAL */
        if (showForeign)
-               appendPQExpBufferStr(&buf, "'f',");
+               appendPQExpBufferStr(&buf, CppAsString2(RELKIND_FOREIGN_TABLE) ",");
 
        appendPQExpBufferStr(&buf, "''");       /* dummy */
        appendPQExpBufferStr(&buf, ")\n");
@@ -2989,9 +3400,10 @@ listTables(const char *tabtypes, const char *pattern, bool verbose, bool showSys
 
        /*
         * TOAST objects are suppressed unconditionally.  Since we don't provide
-        * any way to select relkind 't' above, we would never show toast tables
-        * in any case; it seems a bit confusing to allow their indexes to be
-        * shown. Use plain \d if you really need to look at a TOAST table/index.
+        * any way to select RELKIND_TOASTVALUE above, we would never show toast
+        * tables in any case; it seems a bit confusing to allow their indexes to
+        * be shown.  Use plain \d if you really need to look at a TOAST
+        * table/index.
         */
        appendPQExpBufferStr(&buf, "      AND n.nspname !~ '^pg_toast'\n");
 
@@ -3021,7 +3433,7 @@ listTables(const char *tabtypes, const char *pattern, bool verbose, bool showSys
                myopt.translate_columns = translate_columns;
                myopt.n_translate_columns = lengthof(translate_columns);
 
-               printQuery(res, &myopt, pset.queryFout, pset.logfile);
+               printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
        }
 
        PQclear(res);
@@ -3061,12 +3473,12 @@ listLanguages(const char *pattern, bool verbose, bool showSystem)
                                                  ",\n       NOT l.lanispl AS \"%s\",\n"
                                                  "       l.lanplcallfoid::regprocedure AS \"%s\",\n"
                                   "       l.lanvalidator::regprocedure AS \"%s\",\n       ",
-                                                 gettext_noop("Internal Language"),
-                                                 gettext_noop("Call Handler"),
+                                                 gettext_noop("Internal language"),
+                                                 gettext_noop("Call handler"),
                                                  gettext_noop("Validator"));
                if (pset.sversion >= 90000)
                        appendPQExpBuffer(&buf, "l.laninline::regprocedure AS \"%s\",\n       ",
-                                                         gettext_noop("Inline Handler"));
+                                                         gettext_noop("Inline handler"));
                printACLColumn(&buf, "l.lanacl");
        }
 
@@ -3097,7 +3509,7 @@ listLanguages(const char *pattern, bool verbose, bool showSystem)
        myopt.title = _("List of languages");
        myopt.translate_header = true;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -3121,24 +3533,24 @@ listDomains(const char *pattern, bool verbose, bool showSystem)
        printfPQExpBuffer(&buf,
                                          "SELECT n.nspname as \"%s\",\n"
                                          "       t.typname as \"%s\",\n"
-        "       pg_catalog.format_type(t.typbasetype, t.typtypmod) as \"%s\",\n"
-                                         "       TRIM(LEADING\n",
+       "       pg_catalog.format_type(t.typbasetype, t.typtypmod) as \"%s\",\n",
                                          gettext_noop("Schema"),
                                          gettext_noop("Name"),
                                          gettext_noop("Type"));
 
        if (pset.sversion >= 90100)
-               appendPQExpBufferStr(&buf,
-                                                        "            COALESCE((SELECT ' collate ' || c.collname FROM pg_catalog.pg_collation c, pg_catalog.pg_type bt\n"
-                                                        "                      WHERE c.oid = t.typcollation AND bt.oid = t.typbasetype AND t.typcollation <> bt.typcollation), '') ||\n");
+               appendPQExpBuffer(&buf,
+                                                 "       (SELECT c.collname FROM pg_catalog.pg_collation c, pg_catalog.pg_type bt\n"
+                                                 "        WHERE c.oid = t.typcollation AND bt.oid = t.typbasetype AND t.typcollation <> bt.typcollation) as \"%s\",\n",
+                                                 gettext_noop("Collation"));
        appendPQExpBuffer(&buf,
-          "            CASE WHEN t.typnotnull THEN ' not null' ELSE '' END ||\n"
-                                         "            CASE WHEN t.typdefault IS NOT NULL THEN ' default ' || t.typdefault ELSE '' END\n"
-                                         "       ) as \"%s\",\n"
+                        "       CASE WHEN t.typnotnull THEN 'not null' END as \"%s\",\n"
+                                         "       t.typdefault as \"%s\",\n"
                                          "       pg_catalog.array_to_string(ARRAY(\n"
                                          "         SELECT pg_catalog.pg_get_constraintdef(r.oid, true) FROM pg_catalog.pg_constraint r WHERE t.oid = r.contypid\n"
                                          "       ), ' ') as \"%s\"",
-                                         gettext_noop("Modifier"),
+                                         gettext_noop("Nullable"),
+                                         gettext_noop("Default"),
                                          gettext_noop("Check"));
 
        if (verbose)
@@ -3184,7 +3596,7 @@ listDomains(const char *pattern, bool verbose, bool showSystem)
        myopt.title = _("List of domains");
        myopt.translate_header = true;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -3260,7 +3672,7 @@ listConversions(const char *pattern, bool verbose, bool showSystem)
        myopt.translate_columns = translate_columns;
        myopt.n_translate_columns = lengthof(translate_columns);
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -3326,7 +3738,7 @@ listEventTriggers(const char *pattern, bool verbose)
        myopt.translate_columns = translate_columns;
        myopt.n_translate_columns = lengthof(translate_columns);
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -3425,7 +3837,7 @@ listCasts(const char *pattern, bool verbose)
        myopt.translate_columns = translate_columns;
        myopt.n_translate_columns = lengthof(translate_columns);
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -3442,12 +3854,15 @@ listCollations(const char *pattern, bool verbose, bool showSystem)
        PQExpBufferData buf;
        PGresult   *res;
        printQueryOpt myopt = pset.popt;
-       static const bool translate_columns[] = {false, false, false, false, false};
+       static const bool translate_columns[] = {false, false, false, false, false, false};
 
        if (pset.sversion < 90100)
        {
-               psql_error("The server (version %d.%d) does not support collations.\n",
-                                  pset.sversion / 10000, (pset.sversion / 100) % 100);
+               char            sverbuf[32];
+
+               psql_error("The server (version %s) does not support collations.\n",
+                                  formatPGVersionNumber(pset.sversion, false,
+                                                                                sverbuf, sizeof(sverbuf)));
                return true;
        }
 
@@ -3463,6 +3878,11 @@ listCollations(const char *pattern, bool verbose, bool showSystem)
                                          gettext_noop("Collate"),
                                          gettext_noop("Ctype"));
 
+       if (pset.sversion >= 100000)
+               appendPQExpBuffer(&buf,
+                                                 ",\n       CASE c.collprovider WHEN 'd' THEN 'default' WHEN 'c' THEN 'libc' WHEN 'i' THEN 'icu' END AS \"%s\"",
+                                                 gettext_noop("Provider"));
+
        if (verbose)
                appendPQExpBuffer(&buf,
                                                  ",\n       pg_catalog.obj_description(c.oid, 'pg_collation') AS \"%s\"",
@@ -3501,7 +3921,7 @@ listCollations(const char *pattern, bool verbose, bool showSystem)
        myopt.translate_columns = translate_columns;
        myopt.n_translate_columns = lengthof(translate_columns);
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -3558,7 +3978,7 @@ listSchemas(const char *pattern, bool verbose, bool showSystem)
        myopt.title = _("List of schemas");
        myopt.translate_header = true;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -3578,8 +3998,11 @@ listTSParsers(const char *pattern, bool verbose)
 
        if (pset.sversion < 80300)
        {
-               psql_error("The server (version %d.%d) does not support full text search.\n",
-                                  pset.sversion / 10000, (pset.sversion / 100) % 100);
+               char            sverbuf[32];
+
+               psql_error("The server (version %s) does not support full text search.\n",
+                                  formatPGVersionNumber(pset.sversion, false,
+                                                                                sverbuf, sizeof(sverbuf)));
                return true;
        }
 
@@ -3589,11 +4012,11 @@ listTSParsers(const char *pattern, bool verbose)
        initPQExpBuffer(&buf);
 
        printfPQExpBuffer(&buf,
-                                         "SELECT \n"
+                                         "SELECT\n"
                                          "  n.nspname as \"%s\",\n"
                                          "  p.prsname as \"%s\",\n"
                        "  pg_catalog.obj_description(p.oid, 'pg_ts_parser') as \"%s\"\n"
-                                         "FROM pg_catalog.pg_ts_parser p \n"
+                                         "FROM pg_catalog.pg_ts_parser p\n"
                   "LEFT JOIN pg_catalog.pg_namespace n ON n.oid = p.prsnamespace\n",
                                          gettext_noop("Schema"),
                                          gettext_noop("Name"),
@@ -3615,7 +4038,7 @@ listTSParsers(const char *pattern, bool verbose)
        myopt.title = _("List of text search parsers");
        myopt.translate_header = true;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -3634,9 +4057,9 @@ listTSParsersVerbose(const char *pattern)
        initPQExpBuffer(&buf);
 
        printfPQExpBuffer(&buf,
-                                         "SELECT p.oid, \n"
-                                         "  n.nspname, \n"
-                                         "  p.prsname \n"
+                                         "SELECT p.oid,\n"
+                                         "  n.nspname,\n"
+                                         "  p.prsname\n"
                                          "FROM pg_catalog.pg_ts_parser p\n"
                        "LEFT JOIN pg_catalog.pg_namespace n ON n.oid = p.prsnamespace\n"
                );
@@ -3701,34 +4124,34 @@ describeOneTSParser(const char *oid, const char *nspname, const char *prsname)
        initPQExpBuffer(&buf);
 
        printfPQExpBuffer(&buf,
-                                         "SELECT '%s' AS \"%s\", \n"
-                                         "   p.prsstart::pg_catalog.regproc AS \"%s\", \n"
-                 "   pg_catalog.obj_description(p.prsstart, 'pg_proc') as \"%s\" \n"
-                                         " FROM pg_catalog.pg_ts_parser p \n"
-                                         " WHERE p.oid = '%s' \n"
-                                         "UNION ALL \n"
-                                         "SELECT '%s', \n"
-                                         "   p.prstoken::pg_catalog.regproc, \n"
-                                       "   pg_catalog.obj_description(p.prstoken, 'pg_proc') \n"
-                                         " FROM pg_catalog.pg_ts_parser p \n"
-                                         " WHERE p.oid = '%s' \n"
-                                         "UNION ALL \n"
-                                         "SELECT '%s', \n"
-                                         "   p.prsend::pg_catalog.regproc, \n"
-                                         "   pg_catalog.obj_description(p.prsend, 'pg_proc') \n"
-                                         " FROM pg_catalog.pg_ts_parser p \n"
-                                         " WHERE p.oid = '%s' \n"
-                                         "UNION ALL \n"
-                                         "SELECT '%s', \n"
-                                         "   p.prsheadline::pg_catalog.regproc, \n"
-                                "   pg_catalog.obj_description(p.prsheadline, 'pg_proc') \n"
-                                         " FROM pg_catalog.pg_ts_parser p \n"
-                                         " WHERE p.oid = '%s' \n"
-                                         "UNION ALL \n"
-                                         "SELECT '%s', \n"
-                                         "   p.prslextype::pg_catalog.regproc, \n"
-                                 "   pg_catalog.obj_description(p.prslextype, 'pg_proc') \n"
-                                         " FROM pg_catalog.pg_ts_parser p \n"
+                                         "SELECT '%s' AS \"%s\",\n"
+                                         "   p.prsstart::pg_catalog.regproc AS \"%s\",\n"
+                  "   pg_catalog.obj_description(p.prsstart, 'pg_proc') as \"%s\"\n"
+                                         " FROM pg_catalog.pg_ts_parser p\n"
+                                         " WHERE p.oid = '%s'\n"
+                                         "UNION ALL\n"
+                                         "SELECT '%s',\n"
+                                         "   p.prstoken::pg_catalog.regproc,\n"
+                                         "   pg_catalog.obj_description(p.prstoken, 'pg_proc')\n"
+                                         " FROM pg_catalog.pg_ts_parser p\n"
+                                         " WHERE p.oid = '%s'\n"
+                                         "UNION ALL\n"
+                                         "SELECT '%s',\n"
+                                         "   p.prsend::pg_catalog.regproc,\n"
+                                         "   pg_catalog.obj_description(p.prsend, 'pg_proc')\n"
+                                         " FROM pg_catalog.pg_ts_parser p\n"
+                                         " WHERE p.oid = '%s'\n"
+                                         "UNION ALL\n"
+                                         "SELECT '%s',\n"
+                                         "   p.prsheadline::pg_catalog.regproc,\n"
+                                 "   pg_catalog.obj_description(p.prsheadline, 'pg_proc')\n"
+                                         " FROM pg_catalog.pg_ts_parser p\n"
+                                         " WHERE p.oid = '%s'\n"
+                                         "UNION ALL\n"
+                                         "SELECT '%s',\n"
+                                         "   p.prslextype::pg_catalog.regproc,\n"
+                                  "   pg_catalog.obj_description(p.prslextype, 'pg_proc')\n"
+                                         " FROM pg_catalog.pg_ts_parser p\n"
                                          " WHERE p.oid = '%s';",
                                          gettext_noop("Start parse"),
                                          gettext_noop("Method"),
@@ -3761,16 +4184,16 @@ describeOneTSParser(const char *oid, const char *nspname, const char *prsname)
        myopt.translate_columns = translate_columns;
        myopt.n_translate_columns = lengthof(translate_columns);
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
 
        initPQExpBuffer(&buf);
 
        printfPQExpBuffer(&buf,
-                                         "SELECT t.alias as \"%s\", \n"
-                                         "  t.description as \"%s\" \n"
-                         "FROM pg_catalog.ts_token_type( '%s'::pg_catalog.oid ) as t \n"
+                                         "SELECT t.alias as \"%s\",\n"
+                                         "  t.description as \"%s\"\n"
+                          "FROM pg_catalog.ts_token_type( '%s'::pg_catalog.oid ) as t\n"
                                          "ORDER BY 1;",
                                          gettext_noop("Token name"),
                                          gettext_noop("Description"),
@@ -3793,7 +4216,7 @@ describeOneTSParser(const char *oid, const char *nspname, const char *prsname)
        myopt.translate_columns = NULL;
        myopt.n_translate_columns = 0;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -3813,15 +4236,18 @@ listTSDictionaries(const char *pattern, bool verbose)
 
        if (pset.sversion < 80300)
        {
-               psql_error("The server (version %d.%d) does not support full text search.\n",
-                                  pset.sversion / 10000, (pset.sversion / 100) % 100);
+               char            sverbuf[32];
+
+               psql_error("The server (version %s) does not support full text search.\n",
+                                  formatPGVersionNumber(pset.sversion, false,
+                                                                                sverbuf, sizeof(sverbuf)));
                return true;
        }
 
        initPQExpBuffer(&buf);
 
        printfPQExpBuffer(&buf,
-                                         "SELECT \n"
+                                         "SELECT\n"
                                          "  n.nspname as \"%s\",\n"
                                          "  d.dictname as \"%s\",\n",
                                          gettext_noop("Schema"),
@@ -3830,11 +4256,11 @@ listTSDictionaries(const char *pattern, bool verbose)
        if (verbose)
        {
                appendPQExpBuffer(&buf,
-                                                 "  ( SELECT COALESCE(nt.nspname, '(null)')::pg_catalog.text || '.' || t.tmplname FROM \n"
-                                                 "    pg_catalog.pg_ts_template t \n"
-                                                 "                      LEFT JOIN pg_catalog.pg_namespace nt ON nt.oid = t.tmplnamespace \n"
-                                                 "                      WHERE d.dicttemplate = t.oid ) AS  \"%s\", \n"
-                                                 "  d.dictinitoption as \"%s\", \n",
+                                                 "  ( SELECT COALESCE(nt.nspname, '(null)')::pg_catalog.text || '.' || t.tmplname FROM\n"
+                                                 "    pg_catalog.pg_ts_template t\n"
+                                                 "    LEFT JOIN pg_catalog.pg_namespace nt ON nt.oid = t.tmplnamespace\n"
+                                                 "    WHERE d.dicttemplate = t.oid ) AS  \"%s\",\n"
+                                                 "  d.dictinitoption as \"%s\",\n",
                                                  gettext_noop("Template"),
                                                  gettext_noop("Init options"));
        }
@@ -3861,7 +4287,7 @@ listTSDictionaries(const char *pattern, bool verbose)
        myopt.title = _("List of text search dictionaries");
        myopt.translate_header = true;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -3881,8 +4307,11 @@ listTSTemplates(const char *pattern, bool verbose)
 
        if (pset.sversion < 80300)
        {
-               psql_error("The server (version %d.%d) does not support full text search.\n",
-                                  pset.sversion / 10000, (pset.sversion / 100) % 100);
+               char            sverbuf[32];
+
+               psql_error("The server (version %s) does not support full text search.\n",
+                                  formatPGVersionNumber(pset.sversion, false,
+                                                                                sverbuf, sizeof(sverbuf)));
                return true;
        }
 
@@ -3890,7 +4319,7 @@ listTSTemplates(const char *pattern, bool verbose)
 
        if (verbose)
                printfPQExpBuffer(&buf,
-                                                 "SELECT \n"
+                                                 "SELECT\n"
                                                  "  n.nspname AS \"%s\",\n"
                                                  "  t.tmplname AS \"%s\",\n"
                                                  "  t.tmplinit::pg_catalog.regproc AS \"%s\",\n"
@@ -3903,7 +4332,7 @@ listTSTemplates(const char *pattern, bool verbose)
                                                  gettext_noop("Description"));
        else
                printfPQExpBuffer(&buf,
-                                                 "SELECT \n"
+                                                 "SELECT\n"
                                                  "  n.nspname AS \"%s\",\n"
                                                  "  t.tmplname AS \"%s\",\n"
                 "  pg_catalog.obj_description(t.oid, 'pg_ts_template') AS \"%s\"\n",
@@ -3929,7 +4358,7 @@ listTSTemplates(const char *pattern, bool verbose)
        myopt.title = _("List of text search templates");
        myopt.translate_header = true;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -3949,8 +4378,11 @@ listTSConfigs(const char *pattern, bool verbose)
 
        if (pset.sversion < 80300)
        {
-               psql_error("The server (version %d.%d) does not support full text search.\n",
-                                  pset.sversion / 10000, (pset.sversion / 100) % 100);
+               char            sverbuf[32];
+
+               psql_error("The server (version %s) does not support full text search.\n",
+                                  formatPGVersionNumber(pset.sversion, false,
+                                                                                sverbuf, sizeof(sverbuf)));
                return true;
        }
 
@@ -3960,12 +4392,12 @@ listTSConfigs(const char *pattern, bool verbose)
        initPQExpBuffer(&buf);
 
        printfPQExpBuffer(&buf,
-                                         "SELECT \n"
+                                         "SELECT\n"
                                          "   n.nspname as \"%s\",\n"
                                          "   c.cfgname as \"%s\",\n"
                   "   pg_catalog.obj_description(c.oid, 'pg_ts_config') as \"%s\"\n"
                                          "FROM pg_catalog.pg_ts_config c\n"
-                 "LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.cfgnamespace \n",
+                  "LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.cfgnamespace\n",
                                          gettext_noop("Schema"),
                                          gettext_noop("Name"),
                                          gettext_noop("Description")
@@ -3986,7 +4418,7 @@ listTSConfigs(const char *pattern, bool verbose)
        myopt.title = _("List of text search configurations");
        myopt.translate_header = true;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -4003,13 +4435,13 @@ listTSConfigsVerbose(const char *pattern)
 
        printfPQExpBuffer(&buf,
                                          "SELECT c.oid, c.cfgname,\n"
-                                         "   n.nspname, \n"
-                                         "   p.prsname, \n"
-                                         "   np.nspname as pnspname \n"
-                                         "FROM pg_catalog.pg_ts_config c \n"
-          "   LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.cfgnamespace, \n"
-                                         " pg_catalog.pg_ts_parser p \n"
-         "   LEFT JOIN pg_catalog.pg_namespace np ON np.oid = p.prsnamespace \n"
+                                         "   n.nspname,\n"
+                                         "   p.prsname,\n"
+                                         "   np.nspname as pnspname\n"
+                                         "FROM pg_catalog.pg_ts_config c\n"
+               "   LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.cfgnamespace,\n"
+                                         " pg_catalog.pg_ts_parser p\n"
+          "   LEFT JOIN pg_catalog.pg_namespace np ON np.oid = p.prsnamespace\n"
                                          "WHERE  p.oid = c.cfgparser\n"
                );
 
@@ -4078,20 +4510,20 @@ describeOneTSConfig(const char *oid, const char *nspname, const char *cfgname,
        initPQExpBuffer(&buf);
 
        printfPQExpBuffer(&buf,
-                                         "SELECT \n"
-                                         "  ( SELECT t.alias FROM \n"
-                                         "    pg_catalog.ts_token_type(c.cfgparser) AS t \n"
-                                         "    WHERE t.tokid = m.maptokentype ) AS \"%s\", \n"
-                                         "  pg_catalog.btrim( \n"
-                                 "    ARRAY( SELECT mm.mapdict::pg_catalog.regdictionary \n"
-                                         "           FROM pg_catalog.pg_ts_config_map AS mm \n"
-                                         "           WHERE mm.mapcfg = m.mapcfg AND mm.maptokentype = m.maptokentype \n"
-                                         "           ORDER BY mapcfg, maptokentype, mapseqno \n"
-                                         "    ) :: pg_catalog.text , \n"
-                                         "  '{}') AS \"%s\" \n"
-        "FROM pg_catalog.pg_ts_config AS c, pg_catalog.pg_ts_config_map AS m \n"
-                                         "WHERE c.oid = '%s' AND m.mapcfg = c.oid \n"
-                                         "GROUP BY m.mapcfg, m.maptokentype, c.cfgparser \n"
+                                         "SELECT\n"
+                                         "  ( SELECT t.alias FROM\n"
+                                         "    pg_catalog.ts_token_type(c.cfgparser) AS t\n"
+                                         "    WHERE t.tokid = m.maptokentype ) AS \"%s\",\n"
+                                         "  pg_catalog.btrim(\n"
+                                  "    ARRAY( SELECT mm.mapdict::pg_catalog.regdictionary\n"
+                                         "           FROM pg_catalog.pg_ts_config_map AS mm\n"
+                                         "           WHERE mm.mapcfg = m.mapcfg AND mm.maptokentype = m.maptokentype\n"
+                                         "           ORDER BY mapcfg, maptokentype, mapseqno\n"
+                                         "    ) :: pg_catalog.text,\n"
+                                         "  '{}') AS \"%s\"\n"
+         "FROM pg_catalog.pg_ts_config AS c, pg_catalog.pg_ts_config_map AS m\n"
+                                         "WHERE c.oid = '%s' AND m.mapcfg = c.oid\n"
+                                         "GROUP BY m.mapcfg, m.maptokentype, c.cfgparser\n"
                                          "ORDER BY 1;",
                                          gettext_noop("Token"),
                                          gettext_noop("Dictionaries"),
@@ -4124,7 +4556,7 @@ describeOneTSConfig(const char *oid, const char *nspname, const char *cfgname,
        myopt.topt.default_footer = false;
        myopt.translate_header = true;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        termPQExpBuffer(&title);
 
@@ -4147,8 +4579,11 @@ listForeignDataWrappers(const char *pattern, bool verbose)
 
        if (pset.sversion < 80400)
        {
-               psql_error("The server (version %d.%d) does not support foreign-data wrappers.\n",
-                                  pset.sversion / 10000, (pset.sversion / 100) % 100);
+               char            sverbuf[32];
+
+               psql_error("The server (version %s) does not support foreign-data wrappers.\n",
+                                  formatPGVersionNumber(pset.sversion, false,
+                                                                                sverbuf, sizeof(sverbuf)));
                return true;
        }
 
@@ -4177,7 +4612,7 @@ listForeignDataWrappers(const char *pattern, bool verbose)
                                                  "  quote_literal(option_value)  FROM "
                                                  "  pg_options_to_table(fdwoptions)),  ', ') || ')' "
                                                  "  END AS \"%s\"",
-                                                 gettext_noop("FDW Options"));
+                                                 gettext_noop("FDW options"));
 
                if (pset.sversion >= 90100)
                        appendPQExpBuffer(&buf,
@@ -4207,7 +4642,7 @@ listForeignDataWrappers(const char *pattern, bool verbose)
        myopt.title = _("List of foreign-data wrappers");
        myopt.translate_header = true;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -4227,8 +4662,11 @@ listForeignServers(const char *pattern, bool verbose)
 
        if (pset.sversion < 80400)
        {
-               psql_error("The server (version %d.%d) does not support foreign servers.\n",
-                                  pset.sversion / 10000, (pset.sversion / 100) % 100);
+               char            sverbuf[32];
+
+               psql_error("The server (version %s) does not support foreign servers.\n",
+                                  formatPGVersionNumber(pset.sversion, false,
+                                                                                sverbuf, sizeof(sverbuf)));
                return true;
        }
 
@@ -4258,7 +4696,7 @@ listForeignServers(const char *pattern, bool verbose)
                                                  "  d.description AS \"%s\"",
                                                  gettext_noop("Type"),
                                                  gettext_noop("Version"),
-                                                 gettext_noop("FDW Options"),
+                                                 gettext_noop("FDW options"),
                                                  gettext_noop("Description"));
        }
 
@@ -4286,7 +4724,7 @@ listForeignServers(const char *pattern, bool verbose)
        myopt.title = _("List of foreign servers");
        myopt.translate_header = true;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -4306,8 +4744,11 @@ listUserMappings(const char *pattern, bool verbose)
 
        if (pset.sversion < 80400)
        {
-               psql_error("The server (version %d.%d) does not support user mappings.\n",
-                                  pset.sversion / 10000, (pset.sversion / 100) % 100);
+               char            sverbuf[32];
+
+               psql_error("The server (version %s) does not support user mappings.\n",
+                                  formatPGVersionNumber(pset.sversion, false,
+                                                                                sverbuf, sizeof(sverbuf)));
                return true;
        }
 
@@ -4326,7 +4767,7 @@ listUserMappings(const char *pattern, bool verbose)
                                                  "  quote_literal(option_value)  FROM "
                                                  "  pg_options_to_table(umoptions)),  ', ') || ')' "
                                                  "  END AS \"%s\"",
-                                                 gettext_noop("FDW Options"));
+                                                 gettext_noop("FDW options"));
 
        appendPQExpBufferStr(&buf, "\nFROM pg_catalog.pg_user_mappings um\n");
 
@@ -4344,7 +4785,7 @@ listUserMappings(const char *pattern, bool verbose)
        myopt.title = _("List of user mappings");
        myopt.translate_header = true;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -4364,8 +4805,11 @@ listForeignTables(const char *pattern, bool verbose)
 
        if (pset.sversion < 90100)
        {
-               psql_error("The server (version %d.%d) does not support foreign tables.\n",
-                                  pset.sversion / 10000, (pset.sversion / 100) % 100);
+               char            sverbuf[32];
+
+               psql_error("The server (version %s) does not support foreign tables.\n",
+                                  formatPGVersionNumber(pset.sversion, false,
+                                                                                sverbuf, sizeof(sverbuf)));
                return true;
        }
 
@@ -4387,7 +4831,7 @@ listForeignTables(const char *pattern, bool verbose)
                                                  "  pg_options_to_table(ftoptions)),  ', ') || ')' "
                                                  "  END AS \"%s\",\n"
                                                  "  d.description AS \"%s\"",
-                                                 gettext_noop("FDW Options"),
+                                                 gettext_noop("FDW options"),
                                                  gettext_noop("Description"));
 
        appendPQExpBufferStr(&buf,
@@ -4405,7 +4849,8 @@ listForeignTables(const char *pattern, bool verbose)
                                                         "d.objoid = c.oid AND d.objsubid = 0\n");
 
        processSQLNamePattern(pset.db, &buf, pattern, false, false,
-                                                 NULL, "n.nspname", "c.relname", NULL);
+                                                 "n.nspname", "c.relname", NULL,
+                                                 "pg_catalog.pg_table_is_visible(c.oid)");
 
        appendPQExpBufferStr(&buf, "ORDER BY 1, 2;");
 
@@ -4418,7 +4863,7 @@ listForeignTables(const char *pattern, bool verbose)
        myopt.title = _("List of foreign tables");
        myopt.translate_header = true;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -4438,8 +4883,11 @@ listExtensions(const char *pattern)
 
        if (pset.sversion < 90100)
        {
-               psql_error("The server (version %d.%d) does not support extensions.\n",
-                                  pset.sversion / 10000, (pset.sversion / 100) % 100);
+               char            sverbuf[32];
+
+               psql_error("The server (version %s) does not support extensions.\n",
+                                  formatPGVersionNumber(pset.sversion, false,
+                                                                                sverbuf, sizeof(sverbuf)));
                return true;
        }
 
@@ -4472,7 +4920,7 @@ listExtensions(const char *pattern)
        myopt.title = _("List of installed extensions");
        myopt.translate_header = true;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;
@@ -4492,8 +4940,11 @@ listExtensionContents(const char *pattern)
 
        if (pset.sversion < 90100)
        {
-               psql_error("The server (version %d.%d) does not support extensions.\n",
-                                  pset.sversion / 10000, (pset.sversion / 100) % 100);
+               char            sverbuf[32];
+
+               psql_error("The server (version %s) does not support extensions.\n",
+                                  formatPGVersionNumber(pset.sversion, false,
+                                                                                sverbuf, sizeof(sverbuf)));
                return true;
        }
 
@@ -4566,7 +5017,7 @@ listOneExtensionContents(const char *extname, const char *oid)
                                          "FROM pg_catalog.pg_depend\n"
                                          "WHERE refclassid = 'pg_catalog.pg_extension'::pg_catalog.regclass AND refobjid = '%s' AND deptype = 'e'\n"
                                          "ORDER BY 1;",
-                                         gettext_noop("Object Description"),
+                                         gettext_noop("Object description"),
                                          oid);
 
        res = PSQLexec(buf.data);
@@ -4579,7 +5030,269 @@ listOneExtensionContents(const char *extname, const char *oid)
        myopt.title = title;
        myopt.translate_header = true;
 
-       printQuery(res, &myopt, pset.queryFout, pset.logfile);
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
+
+       PQclear(res);
+       return true;
+}
+
+/* \dRp
+ * Lists publications.
+ *
+ * Takes an optional regexp to select particular publications
+ */
+bool
+listPublications(const char *pattern)
+{
+       PQExpBufferData buf;
+       PGresult   *res;
+       printQueryOpt myopt = pset.popt;
+       static const bool translate_columns[] = {false, false, false, false, false, false};
+
+       if (pset.sversion < 100000)
+       {
+               char            sverbuf[32];
+
+               psql_error("The server (version %s) does not support publications.\n",
+                                  formatPGVersionNumber(pset.sversion, false,
+                                                                                sverbuf, sizeof(sverbuf)));
+               return true;
+       }
+
+       initPQExpBuffer(&buf);
+
+       printfPQExpBuffer(&buf,
+                                         "SELECT pubname AS \"%s\",\n"
+                                         "  pg_catalog.pg_get_userbyid(pubowner) AS \"%s\",\n"
+                                         "  puballtables AS \"%s\",\n"
+                                         "  pubinsert AS \"%s\",\n"
+                                         "  pubupdate AS \"%s\",\n"
+                                         "  pubdelete AS \"%s\"\n",
+                                         gettext_noop("Name"),
+                                         gettext_noop("Owner"),
+                                         gettext_noop("All tables"),
+                                         gettext_noop("Inserts"),
+                                         gettext_noop("Updates"),
+                                         gettext_noop("Deletes"));
+
+       appendPQExpBufferStr(&buf,
+                                                "\nFROM pg_catalog.pg_publication\n");
+
+       processSQLNamePattern(pset.db, &buf, pattern, false, false,
+                                                 NULL, "pubname", NULL,
+                                                 NULL);
+
+       appendPQExpBufferStr(&buf, "ORDER BY 1;");
+
+       res = PSQLexec(buf.data);
+       termPQExpBuffer(&buf);
+       if (!res)
+               return false;
+
+       myopt.nullPrint = NULL;
+       myopt.title = _("List of publications");
+       myopt.translate_header = true;
+       myopt.translate_columns = translate_columns;
+       myopt.n_translate_columns = lengthof(translate_columns);
+
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
+
+       PQclear(res);
+
+       return true;
+}
+
+/* \dRp+
+ * Describes publications including the contents.
+ *
+ * Takes an optional regexp to select particular publications
+ */
+bool
+describePublications(const char *pattern)
+{
+       PQExpBufferData buf;
+       int                     i;
+       PGresult   *res;
+
+       if (pset.sversion < 100000)
+       {
+               char            sverbuf[32];
+
+               psql_error("The server (version %s) does not support publications.\n",
+                                  formatPGVersionNumber(pset.sversion, false,
+                                                                                sverbuf, sizeof(sverbuf)));
+               return true;
+       }
+
+       initPQExpBuffer(&buf);
+
+       printfPQExpBuffer(&buf,
+                                         "SELECT oid, pubname, puballtables, pubinsert,\n"
+                                         "  pubupdate, pubdelete\n"
+                                         "FROM pg_catalog.pg_publication\n");
+
+       processSQLNamePattern(pset.db, &buf, pattern, false, false,
+                                                 NULL, "pubname", NULL,
+                                                 NULL);
+
+       appendPQExpBufferStr(&buf, "ORDER BY 2;");
+
+       res = PSQLexec(buf.data);
+       if (!res)
+       {
+               termPQExpBuffer(&buf);
+               return false;
+       }
+
+       for (i = 0; i < PQntuples(res); i++)
+       {
+               const char      align = 'l';
+               int                     ncols = 4;
+               int                     nrows = 1;
+               int                     tables = 0;
+               PGresult   *tabres;
+               char       *pubid = PQgetvalue(res, i, 0);
+               char       *pubname = PQgetvalue(res, i, 1);
+               bool            puballtables = strcmp(PQgetvalue(res, i, 2), "t") == 0;
+               int                     j;
+               PQExpBufferData title;
+               printTableOpt myopt = pset.popt.topt;
+               printTableContent cont;
+
+               initPQExpBuffer(&title);
+               printfPQExpBuffer(&title, _("Publication %s"), pubname);
+               printTableInit(&cont, &myopt, title.data, ncols, nrows);
+
+               printTableAddHeader(&cont, gettext_noop("All tables"), true, align);
+               printTableAddHeader(&cont, gettext_noop("Inserts"), true, align);
+               printTableAddHeader(&cont, gettext_noop("Updates"), true, align);
+               printTableAddHeader(&cont, gettext_noop("Deletes"), true, align);
+
+               printTableAddCell(&cont, PQgetvalue(res, i, 2), false, false);
+               printTableAddCell(&cont, PQgetvalue(res, i, 3), false, false);
+               printTableAddCell(&cont, PQgetvalue(res, i, 4), false, false);
+               printTableAddCell(&cont, PQgetvalue(res, i, 5), false, false);
+
+               if (!puballtables)
+               {
+                       printfPQExpBuffer(&buf,
+                                                         "SELECT n.nspname, c.relname\n"
+                                                         "FROM pg_catalog.pg_class c,\n"
+                                                         "     pg_catalog.pg_namespace n,\n"
+                                                         "     pg_catalog.pg_publication_rel pr\n"
+                                                         "WHERE c.relnamespace = n.oid\n"
+                                                         "  AND c.oid = pr.prrelid\n"
+                                                         "  AND pr.prpubid = '%s'\n"
+                                                         "ORDER BY 1,2", pubid);
+
+                       tabres = PSQLexec(buf.data);
+                       if (!tabres)
+                       {
+                               printTableCleanup(&cont);
+                               PQclear(res);
+                               termPQExpBuffer(&buf);
+                               termPQExpBuffer(&title);
+                               return false;
+                       }
+                       else
+                               tables = PQntuples(tabres);
+
+                       if (tables > 0)
+                               printTableAddFooter(&cont, _("Tables:"));
+
+                       for (j = 0; j < tables; j++)
+                       {
+                               printfPQExpBuffer(&buf, "    \"%s.%s\"",
+                                                                 PQgetvalue(tabres, j, 0),
+                                                                 PQgetvalue(tabres, j, 1));
+
+                               printTableAddFooter(&cont, buf.data);
+                       }
+                       PQclear(tabres);
+               }
+
+               printTable(&cont, pset.queryFout, false, pset.logfile);
+               printTableCleanup(&cont);
+
+               termPQExpBuffer(&title);
+       }
+
+       termPQExpBuffer(&buf);
+       PQclear(res);
+
+       return true;
+}
+
+/* \dRs
+ * Describes subscriptions.
+ *
+ * Takes an optional regexp to select particular subscriptions
+ */
+bool
+describeSubscriptions(const char *pattern, bool verbose)
+{
+       PQExpBufferData buf;
+       PGresult   *res;
+       printQueryOpt myopt = pset.popt;
+       static const bool translate_columns[] = {false, false, false, false,
+       false, false};
+
+       if (pset.sversion < 100000)
+       {
+               char            sverbuf[32];
+
+               psql_error("The server (version %s) does not support subscriptions.\n",
+                                  formatPGVersionNumber(pset.sversion, false,
+                                                                                sverbuf, sizeof(sverbuf)));
+               return true;
+       }
+
+       initPQExpBuffer(&buf);
+
+       printfPQExpBuffer(&buf,
+                                         "SELECT subname AS \"%s\"\n"
+                                         ",  pg_catalog.pg_get_userbyid(subowner) AS \"%s\"\n"
+                                         ",  subenabled AS \"%s\"\n"
+                                         ",  subpublications AS \"%s\"\n",
+                                         gettext_noop("Name"),
+                                         gettext_noop("Owner"),
+                                         gettext_noop("Enabled"),
+                                         gettext_noop("Publication"));
+
+       if (verbose)
+       {
+               appendPQExpBuffer(&buf,
+                                                 ",  subsynccommit AS \"%s\"\n"
+                                                 ",  subconninfo AS \"%s\"\n",
+                                                 gettext_noop("Synchronous commit"),
+                                                 gettext_noop("Conninfo"));
+       }
+
+       /* Only display subscriptions in current database. */
+       appendPQExpBufferStr(&buf,
+                                                "FROM pg_catalog.pg_subscription\n"
+                                                "WHERE subdbid = (SELECT oid\n"
+                                                "                 FROM pg_catalog.pg_database\n"
+                                        "                 WHERE datname = current_database())");
+
+       processSQLNamePattern(pset.db, &buf, pattern, true, false,
+                                                 NULL, "subname", NULL,
+                                                 NULL);
+
+       appendPQExpBufferStr(&buf, "ORDER BY 1;");
+
+       res = PSQLexec(buf.data);
+       termPQExpBuffer(&buf);
+       if (!res)
+               return false;
+
+       myopt.nullPrint = NULL;
+       myopt.title = _("List of subscriptions");
+       myopt.translate_header = true;
+       myopt.translate_columns = translate_columns;
+       myopt.n_translate_columns = lengthof(translate_columns);
+
+       printQuery(res, &myopt, pset.queryFout, false, pset.logfile);
 
        PQclear(res);
        return true;