mirror of
https://github.com/postgres/postgres.git
synced 2026-02-15 16:48:17 -05:00
Add missing translate_columns array entry
This omission caused an assertion error in \dA+.
This commit is contained in:
parent
4f04b66f97
commit
8b3746208c
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue