projects
/
users
/
gsingh
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
066e3a6
)
psql: Add missing schema qualification
author
Peter Eisentraut
<peter_e@gmx.net>
Sat, 25 Mar 2017 04:49:08 +0000
(
00:49
-0400)
committer
Peter Eisentraut
<peter_e@gmx.net>
Sat, 25 Mar 2017 04:49:08 +0000
(
00:49
-0400)
src/bin/psql/describe.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/psql/describe.c
b/src/bin/psql/describe.c
index 3cf1742020f7a62a6caafb82aa3a315ed3a6c150..bcf675208b472a8a30d30f921e60796722b6e950 100644
(file)
--- 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;",