From: Heikki Linnakangas Date: Mon, 24 Jan 2011 12:30:42 +0000 (+0200) Subject: Fix typo in the psql \d query handling, so that we use the correct query X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=74be35b07cf09350168018234026df94184f8991;p=users%2Fkgrittn%2Fpostgres.git Fix typo in the psql \d query handling, so that we use the correct query against 9.0 servers. --- diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index e9436f862a..ada04de451 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -1135,7 +1135,7 @@ describeOneTableDetails(const char *schemaname, initPQExpBuffer(&tmpbuf); /* Get general table info */ - if (pset.sversion >= 90000) + if (pset.sversion >= 90100) { printfPQExpBuffer(&buf, "SELECT c.relchecks, c.relkind, c.relhasindex, c.relhasrules, "