diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index bcad3e880af0ae349eb2dc88216cde5617d11507..49ce94afcc128c514893883a7e6dc68adcc725e9 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -2895,7 +2895,8 @@ listConversions(const char *pattern, bool verbose, bool showSystem) PQExpBufferData buf; PGresult *res; printQueryOpt myopt = pset.popt; - static const bool translate_columns[] = {false, false, false, false, true}; + static const bool translate_columns[] = + {false, false, false, false, true, false}; initPQExpBuffer(&buf); @@ -2969,7 +2970,7 @@ listCasts(const char *pattern, bool verbose) PQExpBufferData buf; PGresult *res; printQueryOpt myopt = pset.popt; - static const bool translate_columns[] = {false, false, false, true}; + static const bool translate_columns[] = {false, false, false, true, false}; initPQExpBuffer(&buf);