|
3 | 3 | * |
4 | 4 | * Copyright (c) 2000-2003, PostgreSQL Global Development Group |
5 | 5 | * |
6 | | - * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.100 2004/07/12 20:41:13 momjian Exp $ |
| 6 | + * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.101 2004/07/13 02:46:21 momjian Exp $ |
7 | 7 | */ |
8 | 8 | #include"postgres_fe.h" |
9 | 9 | #include"describe.h" |
@@ -1321,11 +1321,8 @@ add_tablespace_footer(char relkind, Oid tablespace, char **footers, |
1321 | 1321 | /* Should always be the case, but.... */ |
1322 | 1322 | if(PQntuples(result1)>0) |
1323 | 1323 | { |
1324 | | -printfPQExpBuffer(&buf,_("Tablespace:")); |
1325 | | -footers[(*count)++]=pg_strdup(buf.data); |
1326 | | -printfPQExpBuffer(&buf,_(" \"%s\""), |
1327 | | -PQgetvalue(result1,0,0)); |
1328 | | - |
| 1324 | +printfPQExpBuffer(&buf,_("Tablespace: \"%s\""), |
| 1325 | +PQgetvalue(result1,0,0)); |
1329 | 1326 | footers[(*count)++]=pg_strdup(buf.data); |
1330 | 1327 | } |
1331 | 1328 | PQclear(result1); |
|