OSDN Git Service

Remove bogus use of int4out().
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 29 Aug 2000 00:57:21 +0000 (00:57 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 29 Aug 2000 00:57:21 +0000 (00:57 +0000)
src/interfaces/odbc/info.c

index 8bc6a97..9c99a12 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");
 
        /* ********************************************************************** */