summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera2008-04-14 15:04:20 +0000
committerAlvaro Herrera2008-04-14 15:04:20 +0000
commit7dc658556892c8e7e95ba47d0acc41f92707a1d9 (patch)
tree3a29d1905e5045a7849427a7bd7df44f27806271
parent4a932278dfebe899bcad2675a5bd61e91454b844 (diff)
Fix indentation in new REFERENCED BY psql output, per Brendan Jurd.
-rw-r--r--src/bin/psql/describe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c
index 793a91a5ef..8487a2b9ae 100644
--- a/src/bin/psql/describe.c
+++ b/src/bin/psql/describe.c
@@ -1373,7 +1373,7 @@ describeOneTableDetails(const char *schemaname,
footers[count_footers++] = pg_strdup(buf.data);
for (i = 0; i < referencedby_count; i++)
{
- printfPQExpBuffer(&buf, _(" \"%s\" IN %s %s"),
+ printfPQExpBuffer(&buf, _(" \"%s\" IN %s %s"),
PQgetvalue(result6, i, 0),
PQgetvalue(result6, i, 1),
PQgetvalue(result6, i, 2));