projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
01e6640
)
Back-patch fix to remove bogus use of int4out().
author
Tom Lane
<
[email protected]
>
Sat, 23 Sep 2000 19:30:04 +0000
(19:30 +0000)
committer
Tom Lane
<
[email protected]
>
Sat, 23 Sep 2000 19:30:04 +0000
(19:30 +0000)
src/interfaces/odbc/info.c
patch
|
blob
|
blame
|
history
diff --git
a/src/interfaces/odbc/info.c
b/src/interfaces/odbc/info.c
index e45badc67cf0428f153d646f6bcee609b91ddb0a..b1f7f6a7ee8a43220b81986a91a841395c64b1f0 100644
(file)
--- 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");
// **********************************************************************