Back-patch fix to remove bogus use of int4out().
authorTom Lane <[email protected]>
Sat, 23 Sep 2000 19:30:04 +0000 (19:30 +0000)
committerTom Lane <[email protected]>
Sat, 23 Sep 2000 19:30:04 +0000 (19:30 +0000)
src/interfaces/odbc/info.c

index e45badc67cf0428f153d646f6bcee609b91ddb0a..b1f7f6a7ee8a43220b81986a91a841395c64b1f0 100644 (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");
 
    // **********************************************************************