From: Bruce Momjian Date: Mon, 12 Feb 2001 21:49:24 +0000 (+0000) Subject: Bruce Momjian writes: X-Git-Tag: REL7_1~439 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d99df62c31fe60da5fec3a61eedba90635f5e485;p=postgresql Bruce Momjian writes: > OK, add #include to the file. That should fix it. Seems unlikely, since libpq-fe.h already includes . The real problem here is that the code is wrong: it's passing NULL to an int parameter. regards, tom lane --- diff --git a/contrib/oid2name/oid2name.c b/contrib/oid2name/oid2name.c index 9169c9fd24..1eaa73335c 100644 --- a/contrib/oid2name/oid2name.c +++ b/contrib/oid2name/oid2name.c @@ -6,7 +6,6 @@ */ -#include #include #include #include @@ -316,7 +315,7 @@ void sql_exec_dumpdb(PGconn *conn) /* get the oid and database name from the system pg_database table */ sprintf(todo, "select oid,datname from pg_database"); - sql_exec(conn, todo, NULL); + sql_exec(conn, todo, 0); } /* display all tables in whatever db we are connected to. don't display the @@ -333,7 +332,7 @@ void sql_exec_dumptable(PGconn *conn, int systables) else sprintf(todo, "select relfilenode,relname from pg_class where relname not like 'pg_%%' order by relname"); - sql_exec(conn, todo, NULL); + sql_exec(conn, todo, 0); } /* display the oid for a given tablename for whatever db we are connected