diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-03-25 00:49:08 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-03-25 00:49:08 -0400 |
commit | 19f7e1a7f7dfa841d9357be951f7478b3741009e (patch) | |
tree | 762b5576e261e831272c7ca53a9e01220aa03e01 /src | |
parent | 066e3a68ae5210a1fb4ac1c19069202615ce4d89 (diff) | |
download | postgresql-19f7e1a7f7dfa841d9357be951f7478b3741009e.tar.gz postgresql-19f7e1a7f7dfa841d9357be951f7478b3741009e.zip |
psql: Add missing schema qualification
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/describe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index 3cf1742020f..bcf675208b4 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;", |