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

« back to all changes in this revision

Viewing changes to src/include/utils/tuplesort.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:
13
13
 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
14
14
 * Portions Copyright (c) 1994, Regents of the University of California
15
15
 *
16
 
 * $PostgreSQL: pgsql/src/include/utils/tuplesort.h,v 1.32 2009/01/01 17:24:02 momjian Exp $
 
16
 * $PostgreSQL: pgsql/src/include/utils/tuplesort.h,v 1.33 2009/06/11 14:49:13 momjian Exp $
17
17
 *
18
18
 *-------------------------------------------------------------------------
19
19
 */
59
59
                                                        bool enforceUnique,
60
60
                                                        int workMem, bool randomAccess);
61
61
extern Tuplesortstate *tuplesort_begin_index_hash(Relation indexRel,
62
 
                                                        uint32 hash_mask,
63
 
                                                        int workMem, bool randomAccess);
 
62
                                                   uint32 hash_mask,
 
63
                                                   int workMem, bool randomAccess);
64
64
extern Tuplesortstate *tuplesort_begin_datum(Oid datumType,
65
65
                                          Oid sortOperator, bool nullsFirstFlag,
66
66
                                          int workMem, bool randomAccess);