diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-08-05 16:23:40 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-08-05 16:23:40 +0000 |
commit | 7260ad7fd9ac130ee64bf3f9b84471b5a21da524 (patch) | |
tree | 51b06cca3acf3d7128381d95e37737fcd7863d13 /src | |
parent | a1627a1d64da72723d61e1ff033bf00ea05a82d0 (diff) | |
download | postgresql-7260ad7fd9ac130ee64bf3f9b84471b5a21da524.tar.gz postgresql-7260ad7fd9ac130ee64bf3f9b84471b5a21da524.zip |
Fix for \d index display.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/psql.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index 3fbc166919b..0b4c78a7e6e 100644 --- a/src/bin/psql/psql.c +++ b/src/bin/psql/psql.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.150 1998/08/04 18:29:41 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.151 1998/08/05 16:23:40 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -782,9 +782,9 @@ tableDesc(PsqlSettings *pset, char *table, FILE *fout) */ if (nIndices == 1) - fprintf(fout, "Indices: "); + fprintf(fout, "Index: "); else - fprintf(fout, "Index: "); + fprintf(fout, "Indices: "); /* next, print out the instances */ for (i = 0; i < PQntuples(res); i++) |