diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-11-28 17:28:02 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-11-28 17:28:02 +0000 |
commit | 002796b5ca9c727526ed5231d90f2a7b6b6cf4a9 (patch) | |
tree | 134153833ca7be8b3ea736b88d0717bc12786929 /src/backend/executor/nodeMaterial.c | |
parent | c445ba331b4de54eb79f6a71c09e9c1666de9b69 (diff) | |
download | postgresql-002796b5ca9c727526ed5231d90f2a7b6b6cf4a9.tar.gz |
Rename heap_destroyr to heap_destroy, heap_destroy to heap_destroy_with_catalog.
Diffstat (limited to 'src/backend/executor/nodeMaterial.c')
-rw-r--r-- | src/backend/executor/nodeMaterial.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/nodeMaterial.c b/src/backend/executor/nodeMaterial.c index e863d25a73..f821459f2a 100644 --- a/src/backend/executor/nodeMaterial.c +++ b/src/backend/executor/nodeMaterial.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/nodeMaterial.c,v 1.10 1997/11/20 23:21:32 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/nodeMaterial.c,v 1.11 1997/11/28 17:27:25 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -319,7 +319,7 @@ ExecEndMaterial(Material *node) matstate = node->matstate; tempRelation = matstate->mat_TempRelation; - heap_destroyr(tempRelation); + heap_destroy(tempRelation); /* ---------------- * close the temp relation and shut down the scan. |