From 74be35b07cf09350168018234026df94184f8991 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Mon, 24 Jan 2011 14:30:42 +0200 Subject: [PATCH] Fix typo in the psql \d query handling, so that we use the correct query against 9.0 servers. --- src/bin/psql/describe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, " -- 2.40.0