Skip to content
Snippets Groups Projects
Commit fdc02f8f authored by Tom Lane's avatar Tom Lane
Browse files

Remove bogus use of int4out().

parent 3ce5c6f4
No related branches found
No related tags found
No related merge requests found
......@@ -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");
/* ********************************************************************** */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment