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-Tag: REL9_1_ALPHA4~372 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=74be35b07cf09350168018234026df94184f8991;p=postgresql 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, "