aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2003-07-27 20:12:06 +0000
committerBruce Momjian <bruce@momjian.us>2003-07-27 20:12:06 +0000
commit606debf26833371b9ea56f297d9ec0d2ada534d5 (patch)
tree527f0d211f48882bc30a1f7f757bf29357e288a2
parent440953e6cde345de81bc604cfa85e36b403e5427 (diff)
downloadpostgresql-606debf26833371b9ea56f297d9ec0d2ada534d5.tar.gz
postgresql-606debf26833371b9ea56f297d9ec0d2ada534d5.zip
Updatge to skip composite types.
-rw-r--r--contrib/oid2name/oid2name.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/oid2name/oid2name.c b/contrib/oid2name/oid2name.c
index 96f09575f68..e2e2907267f 100644
--- a/contrib/oid2name/oid2name.c
+++ b/contrib/oid2name/oid2name.c
@@ -356,7 +356,7 @@ sql_exec_dumptable(PGconn *conn, int systables)
snprintf(todo, 1024, "select relfilenode,relname from pg_class order by relname");
else
snprintf(todo, 1024, "select relfilenode,relname from pg_class "
- "where relkind not in ('v','s', 't') and "
+ "where relkind not in ('v','s', 'c') and "
"relname not like 'pg_%%' order by relname");
sql_exec(conn, todo, 0);