~ubuntu-branches/ubuntu/lucid/postgresql-8.4/lucid-proposed

« back to all changes in this revision

Viewing changes to src/include/executor/spi.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:
6
6
 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
7
7
 * Portions Copyright (c) 1994, Regents of the University of California
8
8
 *
9
 
 * $PostgreSQL: pgsql/src/include/executor/spi.h,v 1.71 2009/01/21 11:02:40 heikki Exp $
 
9
 * $PostgreSQL: pgsql/src/include/executor/spi.h,v 1.72 2009/06/11 14:49:11 momjian Exp $
10
10
 *
11
11
 *-------------------------------------------------------------------------
12
12
 */
81
81
                                         Snapshot snapshot,
82
82
                                         Snapshot crosscheck_snapshot,
83
83
                                         bool read_only, bool fire_triggers, long tcount);
84
 
extern int      SPI_execute_with_args(const char *src,
85
 
                                                                  int nargs, Oid *argtypes,
86
 
                                                                  Datum *Values, const char *Nulls,
87
 
                                                                  bool read_only, long tcount);
 
84
extern int SPI_execute_with_args(const char *src,
 
85
                                          int nargs, Oid *argtypes,
 
86
                                          Datum *Values, const char *Nulls,
 
87
                                          bool read_only, long tcount);
88
88
extern SPIPlanPtr SPI_prepare(const char *src, int nargs, Oid *argtypes);
89
89
extern SPIPlanPtr SPI_prepare_cursor(const char *src, int nargs, Oid *argtypes,
90
90
                                   int cursorOptions);
118
118
extern Portal SPI_cursor_open(const char *name, SPIPlanPtr plan,
119
119
                                Datum *Values, const char *Nulls, bool read_only);
120
120
extern Portal SPI_cursor_open_with_args(const char *name,
121
 
                                                                                const char *src,
122
 
                                                                                int nargs, Oid *argtypes,
123
 
                                                                                Datum *Values, const char *Nulls,
124
 
                                                                                bool read_only, int cursorOptions);
 
121
                                                  const char *src,
 
122
                                                  int nargs, Oid *argtypes,
 
123
                                                  Datum *Values, const char *Nulls,
 
124
                                                  bool read_only, int cursorOptions);
125
125
extern Portal SPI_cursor_find(const char *name);
126
126
extern void SPI_cursor_fetch(Portal portal, bool forward, long count);
127
127
extern void SPI_cursor_move(Portal portal, bool forward, long count);