diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-12-10 03:56:14 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-12-10 03:56:14 +0000 |
commit | 97dec77fab612cfa285f6bd3dd5463a0d55526b2 (patch) | |
tree | d4a9f4754c2f720820f9dbfd9f392ba76301415d /src/include/executor | |
parent | f6baabcd0bf227069423acf3ce767ad5701262ea (diff) | |
download | postgresql-97dec77fab612cfa285f6bd3dd5463a0d55526b2.tar.gz postgresql-97dec77fab612cfa285f6bd3dd5463a0d55526b2.zip |
Rename several destroy* functions/tags to drop*.
Diffstat (limited to 'src/include/executor')
-rw-r--r-- | src/include/executor/executor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index cf9ec0d291d..af599330a09 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: executor.h,v 1.39 1999/10/30 23:13:30 tgl Exp $ + * $Id: executor.h,v 1.40 1999/12/10 03:56:08 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -107,7 +107,7 @@ extern TupleTableSlot *ExecScan(Scan *node, TupleTableSlot *(*accessMtd) ()); * prototypes from functions in execTuples.c */ extern TupleTable ExecCreateTupleTable(int initialSize); -extern void ExecDestroyTupleTable(TupleTable table, bool shouldFree); +extern void ExecDropTupleTable(TupleTable table, bool shouldFree); extern TupleTableSlot *ExecAllocTableSlot(TupleTable table); extern TupleTableSlot *ExecStoreTuple(HeapTuple tuple, TupleTableSlot *slot, |