From: Bruce Momjian Date: Mon, 14 Jul 2008 23:13:04 +0000 (+0000) Subject: Add comment about literal strings in our syntax not being translated in X-Git-Tag: recoveryinfrav9~826 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=91f96079ae5fd92103b052e8a991914767d01b55;p=users%2Fsimon%2Fpostgres.git Add comment about literal strings in our syntax not being translated in psql. --- diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index 314f21c321..c22865c2d6 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -1007,6 +1007,7 @@ describeOneTableDetails(const char *schemaname, if (verbose) { char *storage = PQgetvalue(res, i, 5); + /* these strings are literal in our syntax, so not translated. */ printTableAddCell(&cont, (storage[0]=='p' ? "plain" : (storage[0]=='m' ? "main" : (storage[0]=='x' ? "extended" :