diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-08-29 00:57:21 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-08-29 00:57:21 +0000 |
commit | fdc02f8fc25093291904d522cd9ee83309cae004 (patch) | |
tree | 9a53b3742edc3cfc300575bbebd6f7f1679382d7 /src | |
parent | 3ce5c6f4d8eee20ace15e857f386626546a163e2 (diff) | |
download | postgresql-fdc02f8fc25093291904d522cd9ee83309cae004.tar.gz postgresql-fdc02f8fc25093291904d522cd9ee83309cae004.zip |
Remove bogus use of int4out().
Diffstat (limited to 'src')
-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 8bc6a974002..9c99a120adf 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"); /* ********************************************************************** */ |