8000
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 e39a3df commit bf523f9Copy full SHA for bf523f9
src/bin/psql/describe.c
@@ -8,7 +8,7 @@
8
*
9
* Copyright (c) 2000-2008, PostgreSQL Global Development Group
10
11
- * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.178 2008/07/14 22:51:48 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.179 2008/07/14 23:13:04 momjian Exp $
12
*/
13
#include "postgres_fe.h"
14
@@ -1007,6 +1007,7 @@ describeOneTableDetails(const char *schemaname,
1007
if (verbose)
1008
{
1009
char *storage = PQgetvalue(res, i, 5);
1010
+ /* these strings are literal in our syntax, so not translated. */
1011
printTableAddCell(&cont, (storage[0]=='p' ? "plain" :
1012
(storage[0]=='m' ? "main" :
1013
(storage[0]=='x' ? "extended" :
0 commit comments