diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-03-09 03:34:10 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-03-09 03:34:10 +0000 |
commit | dd04e958c8b03c0f0512497651678c7816af3198 (patch) | |
tree | f309ab67e379d357ca741fb00693762a049a24f5 /src | |
parent | aa60eecc37c1bbb934079bf5234fba3e3879873d (diff) | |
download | postgresql-dd04e958c8b03c0f0512497651678c7816af3198.tar.gz postgresql-dd04e958c8b03c0f0512497651678c7816af3198.zip |
tuplestore_donestoring() isn't needed anymore, but provide a no-op
macro definition so as not to create compatibility problems.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/utils/tuplestore.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/utils/tuplestore.h b/src/include/utils/tuplestore.h index b46babacd13..76fe9fb4287 100644 --- a/src/include/utils/tuplestore.h +++ b/src/include/utils/tuplestore.h @@ -17,7 +17,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: tuplestore.h,v 1.8 2003/03/09 02:19:13 tgl Exp $ + * $Id: tuplestore.h,v 1.9 2003/03/09 03:34:10 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -41,6 +41,9 @@ extern Tuplestorestate *tuplestore_begin_heap(bool randomAccess, extern void tuplestore_puttuple(Tuplestorestate *state, void *tuple); +/* tuplestore_donestoring() used to be required, but is no longer used */ +#define tuplestore_donestoring(state) ((void) 0) + /* backwards scan is only allowed if randomAccess was specified 'true' */ extern void *tuplestore_gettuple(Tuplestorestate *state, bool forward, bool *should_free); |