diff options
author | Tom Lane | 2000-09-23 19:30:04 +0000 |
---|---|---|
committer | Tom Lane | 2000-09-23 19:30:04 +0000 |
commit | c3aab02939ef7bca0d7918e68b7aea3c10ff5ae5 (patch) | |
tree | a14a82e29ab6ef9c7092198e97cdc7014d3dd894 | |
parent | 01e664025eca3c927b4859192499ca405c65c378 (diff) |
Back-patch fix to remove bogus use of int4out().
-rw-r--r-- | src/interfaces/odbc/info.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/odbc/info.c b/src/interfaces/odbc/info.c index e45badc67cf..b1f7f6a7ee8 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"); // ********************************************************************** |