diff options
author | Tom Lane | 2000-09-23 19:30:04 +0000 |
---|---|---|
committer | Tom Lane | 2000-09-23 19:30:04 +0000 |
commit | 458a72fb70307ce2dc685f9f3c8432f3ac7f451a (patch) | |
tree | f5162056bcefaaf6f728b3ee54623a15a0eb0b10 /info.c | |
parent | 4e176e0a7f78b9ee6ac340835315db2732f8ab67 (diff) |
Back-patch fix to remove bogus use of int4out().REL7_0_PATCHES
Diffstat (limited to 'info.c')
-rw-r--r-- | info.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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"); // ********************************************************************** |