]> granicus.if.org Git - postgresql/commitdiff
Fix incorrect pattern-match processing in psql's \det command.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 29 Jan 2016 09:28:03 +0000 (10:28 +0100)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 29 Jan 2016 09:28:03 +0000 (10:28 +0100)
listForeignTables' invocation of processSQLNamePattern did not match up
with the other ones that handle potentially-schema-qualified names; it
failed to make use of pg_table_is_visible() and also passed the name
arguments in the wrong order.  Bug seems to have been aboriginal in commit
0d692a0dc9f0e532.  It accidentally sort of worked as long as you didn't
inquire too closely into the behavior, although the silliness was later
exposed by inconsistencies in the test queries added by 59efda3e50ca4de6
(which I probably should have questioned at the time, but didn't).

Per bug #13899 from Reece Hart.  Patch by Reece Hart and Tom Lane.
Back-patch to all affected branches.

src/bin/psql/describe.c

index a38113ac104cff45a166f34d7bc60994e95de16b..7caa518ea9d19399b4ffc5d251d7619385a1401b 100644 (file)
@@ -3804,7 +3804,8 @@ listForeignTables(const char *pattern, bool verbose)
        appendPQExpBuffer(&buf, "\nAND n.oid = c.relnamespace\n");
 
        processSQLNamePattern(pset.db, &buf, pattern, true, false,
-                                                 NULL, "n.nspname", "c.relname", NULL);
+                                                 "n.nspname", "c.relname", NULL,
+                                                 "pg_catalog.pg_table_is_visible(c.oid)");
 
        appendPQExpBuffer(&buf, "ORDER BY 1, 2;");