diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2016-06-07 18:03:31 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2016-06-07 18:03:31 -0400 |
commit | 8b3746208ce2a2a2bb057dec09cf09a0c783d91b (patch) | |
tree | bcc5e46e5e49859fac37aa4bd22a870644a164c4 /src | |
parent | 4f04b66f97f0e0265489f0fe0373ea44c9ad11bf (diff) | |
download | postgresql-8b3746208ce2a2a2bb057dec09cf09a0c783d91b.tar.gz postgresql-8b3746208ce2a2a2bb057dec09cf09a0c783d91b.zip |
Add missing translate_columns array entry
This omission caused an assertion error in \dA+.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/describe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index 2a05cf95dab..2cdc5acf302 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) { |