summaryrefslogtreecommitdiff
path: root/info.c
diff options
context:
space:
mode:
authorTom Lane2000-09-23 19:30:04 +0000
committerTom Lane2000-09-23 19:30:04 +0000
commit458a72fb70307ce2dc685f9f3c8432f3ac7f451a (patch)
treef5162056bcefaaf6f728b3ee54623a15a0eb0b10 /info.c
parent4e176e0a7f78b9ee6ac340835315db2732f8ab67 (diff)
Back-patch fix to remove bogus use of int4out().REL7_0_PATCHES
Diffstat (limited to 'info.c')
-rw-r--r--info.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/info.c b/info.c
index e45badc..b1f7f6a 100644
--- a/info.c
+++ b/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");
// **********************************************************************