Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 19f7e1a

Browse files
committed
psql: Add missing schema qualification
1 parent 066e3a6 commit 19f7e1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/psql/describe.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2472,7 +2472,7 @@ describeOneTableDetails(const char *schemaname,
24722472
printfPQExpBuffer(&buf,
24732473
"SELECT pub.pubname\n"
24742474
" FROM pg_catalog.pg_publication pub\n"
2475-
" LEFT JOIN pg_publication_rel pr\n"
2475+
" LEFT JOIN pg_catalog.pg_publication_rel pr\n"
24762476
" ON (pr.prpubid = pub.oid)\n"
24772477
"WHERE pr.prrelid = '%s' OR pub.puballtables\n"
24782478
"ORDER BY 1;",

0 commit comments

Comments
 (0)