From 8b3746208ce2a2a2bb057dec09cf09a0c783d91b Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Tue, 7 Jun 2016 18:03:31 -0400 Subject: [PATCH] Add missing translate_columns array entry This omission caused an assertion error in \dA+. --- 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 2a05cf95da..2cdc5acf30 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -138,7 +138,7 @@ describeAccessMethods(const char *pattern, bool verbose) PQExpBufferData buf; PGresult *res; printQueryOpt myopt = pset.popt; - static const bool translate_columns[] = {false, true, false}; + static const bool translate_columns[] = {false, true, false, false}; if (pset.sversion < 90600) { -- 2.40.0