Remove bogus use of int4out().

This commit is contained in:
Tom Lane 2000-08-29 00:57:21 +00:00
parent 3ce5c6f4d8
commit fdc02f8fc2
1 changed files with 2 additions and 2 deletions

View File

@ -1009,8 +1009,8 @@ mylog("%s: entering...stmt=%u\n", func, stmt);
/* filter out large objects unconditionally (they are not system tables) and match users */
strcat(tables_query, " and relname !~ '^xinv[0-9]+'");
strcat(tables_query, " and int4out(usesysid) = int4out(relowner)");
strcat(tables_query, "order by relname");
strcat(tables_query, " and usesysid = relowner");
strcat(tables_query, " order by relname");
/* ********************************************************************** */