Commit 606debf2 authored by Bruce Momjian's avatar Bruce Momjian

Updatge to skip composite types.

parent 440953e6
...@@ -356,7 +356,7 @@ sql_exec_dumptable(PGconn *conn, int systables) ...@@ -356,7 +356,7 @@ sql_exec_dumptable(PGconn *conn, int systables)
snprintf(todo, 1024, "select relfilenode,relname from pg_class order by relname"); snprintf(todo, 1024, "select relfilenode,relname from pg_class order by relname");
else else
snprintf(todo, 1024, "select relfilenode,relname from pg_class " 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"); "relname not like 'pg_%%' order by relname");
sql_exec(conn, todo, 0); sql_exec(conn, todo, 0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment