~ubuntu-branches/ubuntu/natty/postgresql-8.4/natty-security

« back to all changes in this revision

Viewing changes to src/include/utils/tuplestore.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-07-11 16:59:35 UTC
  • mfrom: (5.1.1 karmic)
  • Revision ID: james.westby@ubuntu.com-20090711165935-jfwin6gfrxf0gfsi
Tags: 8.4.0-2
* debian/libpq-dev.install: Ship catalog/genbki.h. (Closes: #536139)
* debian/rules: Drop --enable-cassert for final release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
25
25
 * Portions Copyright (c) 1994, Regents of the University of California
26
26
 *
27
 
 * $PostgreSQL: pgsql/src/include/utils/tuplestore.h,v 1.29 2009/03/27 18:30:21 tgl Exp $
 
27
 * $PostgreSQL: pgsql/src/include/utils/tuplestore.h,v 1.30 2009/06/11 14:49:13 momjian Exp $
28
28
 *
29
29
 *-------------------------------------------------------------------------
30
30
 */
54
54
                                                TupleTableSlot *slot);
55
55
extern void tuplestore_puttuple(Tuplestorestate *state, HeapTuple tuple);
56
56
extern void tuplestore_putvalues(Tuplestorestate *state, TupleDesc tdesc,
57
 
                                                                 Datum *values, bool *isnull);
 
57
                                         Datum *values, bool *isnull);
58
58
 
59
59
/* tuplestore_donestoring() used to be required, but is no longer used */
60
60
#define tuplestore_donestoring(state)   ((void) 0)
64
64
extern void tuplestore_select_read_pointer(Tuplestorestate *state, int ptr);
65
65
 
66
66
extern void tuplestore_copy_read_pointer(Tuplestorestate *state,
67
 
                                                                                 int srcptr, int destptr);
 
67
                                                         int srcptr, int destptr);
68
68
 
69
69
extern void tuplestore_trim(Tuplestorestate *state);
70
70