Back-patch fix to remove bogus use of int4out().

REL7_0_PATCHES
Tom Lane 26 years ago
parent 01e664025e
commit c3aab02939
  1. 4
      src/interfaces/odbc/info.c

@ -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");
// **********************************************************************

Loading…
Cancel
Save