Skip to content

Commit 10be77c

Browse files
committed
Fix indentation in new REFERENCED BY psql output, per Brendan Jurd.
1 parent 9afab58 commit 10be77c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/psql/describe.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (c) 2000-2008, PostgreSQL Global Development Group
55
*
6-
* $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.166 2008/03/30 18:10:20 tgl Exp $
6+
* $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.167 2008/04/14 15:04:20 alvherre Exp $
77
*/
88
#include "postgres_fe.h"
99
#include "describe.h"
@@ -1373,7 +1373,7 @@ describeOneTableDetails(const char *schemaname,
13731373
footers[count_footers++] = pg_strdup(buf.data);
13741374
for (i = 0; i < referencedby_count; i++)
13751375
{
1376-
printfPQExpBuffer(&buf, _(" \"%s\" IN %s %s"),
1376+
printfPQExpBuffer(&buf, _(" \"%s\" IN %s %s"),
13771377
PQgetvalue(result6, i, 0),
13781378
PQgetvalue(result6, i, 1),
13791379
PQgetvalue(result6, i, 2));

0 commit comments

Comments
 (0)