From 91f96079ae5fd92103b052e8a991914767d01b55 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 14 Jul 2008 23:13:04 +0000 Subject: [PATCH] Add comment about literal strings in our syntax not being translated in psql. --- src/bin/psql/describe.c | 1 + 1 file changed, 1 insertion(+) 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" : -- 2.39.5