summaryrefslogtreecommitdiff
path: root/src/bin/psql/describe.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/psql/describe.c')
-rw-r--r--src/bin/psql/describe.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c
index 26c54b366a..3db2eb95a6 100644
--- a/src/bin/psql/describe.c
+++ b/src/bin/psql/describe.c
@@ -3,7 +3,7 @@
*
* Copyright 2000 by PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.24 2000/09/07 04:55:27 ishii Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.25 2000/10/24 01:38:38 tgl Exp $
*/
#include "postgres.h"
#include "describe.h"
@@ -1020,10 +1020,6 @@ listTables(const char *infotype, const char *name, bool desc)
strcat(buf, "'S'");
strcat(buf, ")\n");
- /* ignore large-obj indices */
- if (showIndices)
- strcat(buf, " AND (c.relkind != 'i' OR c.relname !~ '^xinx')\n");
-
strcat(buf, showSystem ? " AND c.relname ~ '^pg_'\n" : " AND c.relname !~ '^pg_'\n");
if (name)
{
@@ -1050,10 +1046,6 @@ listTables(const char *infotype, const char *name, bool desc)
strcat(buf, "'S'");
strcat(buf, ")\n");
- /* ignore large-obj indices */
- if (showIndices)
- strcat(buf, " AND (c.relkind != 'i' OR c.relname !~ '^xinx')\n");
-
strcat(buf, showSystem ? " AND c.relname ~ '^pg_'\n" : " AND c.relname !~ '^pg_'\n");
if (name)
{