tuplestore_donestoring() isn't needed anymore, but provide a no-op
macro definition so as not to create compatibility problems.
This commit is contained in:
parent
aa60eecc37
commit
dd04e958c8
@ -17,7 +17,7 @@
|
|||||||
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
||||||
* Portions Copyright (c) 1994, Regents of the University of California
|
* 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);
|
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' */
|
/* backwards scan is only allowed if randomAccess was specified 'true' */
|
||||||
extern void *tuplestore_gettuple(Tuplestorestate *state, bool forward,
|
extern void *tuplestore_gettuple(Tuplestorestate *state, bool forward,
|
||||||
bool *should_free);
|
bool *should_free);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user