From c9fe12831632efc437354cb0482fd6cb5f246a4a Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 22 Jan 2001 00:50:07 +0000 Subject: Clean up per-tuple memory leaks in trigger firing and plpgsql expression evaluation. --- src/backend/executor/nodeIndexscan.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'src/backend/executor/nodeIndexscan.c') diff --git a/src/backend/executor/nodeIndexscan.c b/src/backend/executor/nodeIndexscan.c index a8b29514b88..7c389975a71 100644 --- a/src/backend/executor/nodeIndexscan.c +++ b/src/backend/executor/nodeIndexscan.c @@ -8,14 +8,12 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/nodeIndexscan.c,v 1.54 2000/08/24 03:29:03 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/nodeIndexscan.c,v 1.55 2001/01/22 00:50:07 tgl Exp $ * *------------------------------------------------------------------------- */ /* * INTERFACE ROUTINES - * ExecInsertIndexTuples inserts tuples into indices on result relation - * * ExecIndexScan scans a relation using indices * ExecIndexNext using index to retrieve next tuple * ExecInitIndexScan creates and initializes state info. @@ -23,16 +21,9 @@ * ExecEndIndexScan releases all storage. * ExecIndexMarkPos marks scan position. * ExecIndexRestrPos restores scan position. - * - * NOTES - * the code supporting ExecInsertIndexTuples should be - * collected and merged with the genam stuff. - * */ #include "postgres.h" - - #include "access/genam.h" #include "access/heapam.h" #include "executor/execdebug.h" -- cgit v1.2.3