Skip to content

Commit c3aab02

Browse files
committed
Back-patch fix to remove bogus use of int4out().
1 parent 01e6640 commit c3aab02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/interfaces/odbc/info.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1009,8 +1009,8 @@ mylog("%s: entering...stmt=%u\n", func, stmt);
10091009

10101010
/* filter out large objects unconditionally (they are not system tables) and match users */
10111011
strcat(tables_query, " and relname !~ '^xinv[0-9]+'");
1012-
strcat(tables_query, " and int4out(usesysid) = int4out(relowner)");
1013-
strcat(tables_query, "order by relname");
1012+
strcat(tables_query, " and usesysid = relowner");
1013+
strcat(tables_query, " order by relname");
10141014

10151015
// **********************************************************************
10161016

0 commit comments

Comments
 (0)