Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5eb1d0d commit 449b4ccCopy full SHA for 449b4cc
src/bin/psql/describe.c
@@ -282,7 +282,7 @@ listAllDbs(bool desc)
282
" pg_user.usename as \"Owner\"");
283
#ifdef MULTIBYTE
284
strcat(buf,
285
- ",\n pg_database.encoding as \"Encoding\"");
+ ",\n pg_encoding_to_char(pg_database.encoding) as \"Encoding\"");
286
#endif
287
if (desc)
288
strcat(buf, ",\n obj_description(pg_database.oid) as \"Description\"\n");
@@ -297,7 +297,7 @@ listAllDbs(bool desc)
297
" NULL as \"Owner\"");
298
299
300
301
302
303
0 commit comments