diff options
| author | Bruce Momjian <bruce@momjian.us> | 1997-01-23 05:59:47 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1997-01-23 05:59:47 +0000 |
| commit | 94515e35224be7c07af2ff71f03dd2efcbe3d2b0 (patch) | |
| tree | b75e5648c32906a11e2db953f68b8c323e54be2e /src/backend/access/heap/heapam.c | |
| parent | 6e725b29864ce8f5ee6e83ed6e474bd416e76217 (diff) | |
| download | postgresql-94515e35224be7c07af2ff71f03dd2efcbe3d2b0.tar.gz | |
Removed unlinked patch that is not neede now that Vadim has properly fixed it.
Diffstat (limited to 'src/backend/access/heap/heapam.c')
| -rw-r--r-- | src/backend/access/heap/heapam.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c index c6489a3a12..d559a3da6d 100644 --- a/src/backend/access/heap/heapam.c +++ b/src/backend/access/heap/heapam.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.9 1997/01/01 06:01:03 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.10 1997/01/23 05:59:47 momjian Exp $ * * * INTERFACE ROUTINES @@ -496,10 +496,6 @@ heap_open(Oid relationId) r = (Relation) RelationIdGetRelation(relationId); - if(RelationIsValid(r) && r->rd_istemp) { - r->rd_tmpunlinked = FALSE; /* now we can unlink it */ - } - if (RelationIsValid(r) && r->rd_rel->relkind == RELKIND_INDEX) { elog(WARN, "%s is an index relation", r->rd_rel->relname.data); } @@ -528,10 +524,6 @@ heap_openr(char *relationName) r = RelationNameGetRelation(relationName); - if(RelationIsValid(r) && r->rd_istemp) { - r->rd_tmpunlinked = FALSE; /* now we can unlink it */ - } - if (RelationIsValid(r) && r->rd_rel->relkind == RELKIND_INDEX) { elog(WARN, "%s is an index relation", r->rd_rel->relname.data); } |
