|
7 | 7 | *
|
8 | 8 | *
|
9 | 9 | * IDENTIFICATION
|
10 |
| - * $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.9 1997/01/01 06:01:03 momjian Exp $ |
| 10 | + * $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.10 1997/01/23 05:59:47 momjian Exp $ |
11 | 11 | *
|
12 | 12 | *
|
13 | 13 | * INTERFACE ROUTINES
|
@@ -496,10 +496,6 @@ heap_open(Oid relationId)
|
496 | 496 |
|
497 | 497 | r= (Relation)RelationIdGetRelation(relationId);
|
498 | 498 |
|
499 |
| -if(RelationIsValid(r)&&r->rd_istemp) { |
500 |
| -r->rd_tmpunlinked= FALSE;/* now we can unlink it */ |
501 |
| - } |
502 |
| - |
503 | 499 | if (RelationIsValid(r)&&r->rd_rel->relkind==RELKIND_INDEX) {
|
504 | 500 | elog(WARN,"%s is an index relation",r->rd_rel->relname.data);
|
505 | 501 | }
|
@@ -528,10 +524,6 @@ heap_openr(char *relationName)
|
528 | 524 |
|
529 | 525 | r=RelationNameGetRelation(relationName);
|
530 | 526 |
|
531 |
| -if(RelationIsValid(r)&&r->rd_istemp) { |
532 |
| -r->rd_tmpunlinked= FALSE;/* now we can unlink it */ |
533 |
| - } |
534 |
| - |
535 | 527 | if (RelationIsValid(r)&&r->rd_rel->relkind==RELKIND_INDEX) {
|
536 | 528 | elog(WARN,"%s is an index relation",r->rd_rel->relname.data);
|
537 | 529 | }
|
|