diff options
Diffstat (limited to 'src/backend/optimizer/path/allpaths.c')
-rw-r--r-- | src/backend/optimizer/path/allpaths.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/backend/optimizer/path/allpaths.c b/src/backend/optimizer/path/allpaths.c index 2d724265f06..50d5006a960 100644 --- a/src/backend/optimizer/path/allpaths.c +++ b/src/backend/optimizer/path/allpaths.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/optimizer/path/allpaths.c,v 1.111 2004/01/05 05:07:35 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/optimizer/path/allpaths.c,v 1.112 2004/01/14 23:01:55 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -227,8 +227,7 @@ set_inherited_rel_pathlist(Query *root, RelOptInfo *rel, * it examines the parent's inheritlist entry. There's no need to * check twice, so turn off access check bits in the original RTE. */ - rte->checkForRead = false; - rte->checkForWrite = false; + rte->requiredPerms = 0; /* * Initialize to compute size estimates for whole inheritance tree |