Add missing translate_columns array entry

This omission caused an assertion error in \dA+.
This commit is contained in:
Alvaro Herrera 2016-06-07 18:03:31 -04:00
parent 4f04b66f97
commit 8b3746208c

View File

@ -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)
{