mirror of
https://github.com/postgres/postgres.git
synced 2025-07-03 20:02:46 +03:00
Clean up per-tuple memory leaks in trigger firing and plpgsql
expression evaluation.
This commit is contained in:
@ -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"
|
||||
|
Reference in New Issue
Block a user