From: Peter Eisentraut Date: Sat, 25 Mar 2017 04:49:08 +0000 (-0400) Subject: psql: Add missing schema qualification X-Git-Tag: REL_10_BETA1~514 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=19f7e1a7f7dfa841d9357be951f7478b3741009e;p=postgresql psql: Add missing schema qualification --- diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index 3cf1742020..bcf675208b 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -2472,7 +2472,7 @@ describeOneTableDetails(const char *schemaname, printfPQExpBuffer(&buf, "SELECT pub.pubname\n" " FROM pg_catalog.pg_publication pub\n" - " LEFT JOIN pg_publication_rel pr\n" + " LEFT JOIN pg_catalog.pg_publication_rel pr\n" " ON (pr.prpubid = pub.oid)\n" "WHERE pr.prrelid = '%s' OR pub.puballtables\n" "ORDER BY 1;",