From: Tom Lane Date: Tue, 29 Aug 2000 00:57:21 +0000 (+0000) Subject: Remove bogus use of int4out(). X-Git-Tag: REL7_1_BETA~727 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fdc02f8fc25093291904d522cd9ee83309cae004;p=postgresql Remove bogus use of int4out(). --- diff --git a/src/interfaces/odbc/info.c b/src/interfaces/odbc/info.c index 8bc6a97400..9c99a120ad 100644 --- a/src/interfaces/odbc/info.c +++ b/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"); /* ********************************************************************** */