Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 0e19884

Browse files
committed
Fix the query used for \d against 8.2 and 8.3 servers.
1 parent 3a0717c commit 0e19884

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
@@ -8,7 +8,7 @@
88
*
99
* Copyright (c) 2000-2009, PostgreSQL Global Development Group
1010
*
11-
* $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.210 2009/04/21 17:28:01 momjian Exp $
11+
* $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.211 2009/05/04 17:31:35 heikki Exp $
1212
*/
1313
#include "postgres_fe.h"
1414

@@ -1049,7 +1049,7 @@ describeOneTableDetails(const char *schemaname,
10491049
"%s, reltablespace\n"
10501050
"FROM pg_catalog.pg_class WHERE oid = '%s'",
10511051
(verbose ?
1052-
"pg_catalog.array_to_string(reloptions, E', ')" : ",''"),
1052+
"pg_catalog.array_to_string(reloptions, E', ')" : "''"),
10531053
oid);
10541054
}
10551055
else if (pset.sversion >= 80000)

0 commit comments

Comments
 (0)