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

« back to all changes in this revision

Viewing changes to src/include/executor/executor.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:
7
7
 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
8
8
 * Portions Copyright (c) 1994, Regents of the University of California
9
9
 *
10
 
 * $PostgreSQL: pgsql/src/include/executor/executor.h,v 1.154 2009/01/01 17:23:59 momjian Exp $
 
10
 * $PostgreSQL: pgsql/src/include/executor/executor.h,v 1.155 2009/06/11 14:49:11 momjian Exp $
11
11
 *
12
12
 *-------------------------------------------------------------------------
13
13
 */
66
66
 
67
67
/* Hook for plugins to get control in ExecutorRun() */
68
68
typedef void (*ExecutorRun_hook_type) (QueryDesc *queryDesc,
69
 
                                                                           ScanDirection direction,
70
 
                                                                           long count);
 
69
                                                                                                   ScanDirection direction,
 
70
                                                                                                   long count);
71
71
extern PGDLLIMPORT ExecutorRun_hook_type ExecutorRun_hook;
72
72
 
73
73
/* Hook for plugins to get control in ExecutorEnd() */
150
150
extern void ExecutorStart(QueryDesc *queryDesc, int eflags);
151
151
extern void standard_ExecutorStart(QueryDesc *queryDesc, int eflags);
152
152
extern void ExecutorRun(QueryDesc *queryDesc,
153
 
                                                ScanDirection direction, long count);
 
153
                        ScanDirection direction, long count);
154
154
extern void standard_ExecutorRun(QueryDesc *queryDesc,
155
 
                                                                 ScanDirection direction, long count);
 
155
                                         ScanDirection direction, long count);
156
156
extern void ExecutorEnd(QueryDesc *queryDesc);
157
157
extern void standard_ExecutorEnd(QueryDesc *queryDesc);
158
158
extern void ExecutorRewind(QueryDesc *queryDesc);