~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

Viewing changes to src/include/executor/execdefs.h

  • Committer: alvherre
  • Date: 2005-12-16 21:24:52 UTC
  • Revision ID: svn-v4:db760fc0-0f08-0410-9d63-cc6633f64896:trunk:1
Initial import of the REL8_0_3 sources from the Pgsql CVS repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-------------------------------------------------------------------------
 
2
 *
 
3
 * execdefs.h
 
4
 *
 
5
 *
 
6
 *
 
7
 * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
 
8
 * Portions Copyright (c) 1994, Regents of the University of California
 
9
 *
 
10
 * $PostgreSQL: pgsql/src/include/executor/execdefs.h,v 1.17 2004-12-31 22:03:29 pgsql Exp $
 
11
 *
 
12
 *-------------------------------------------------------------------------
 
13
 */
 
14
#ifndef EXECDEFS_H
 
15
#define EXECDEFS_H
 
16
 
 
17
/* ----------------
 
18
 *              Merge Join states
 
19
 * ----------------
 
20
 */
 
21
#define EXEC_MJ_INITIALIZE                              1
 
22
#define EXEC_MJ_JOINMARK                                2
 
23
#define EXEC_MJ_JOINTEST                                3
 
24
#define EXEC_MJ_JOINTUPLES                              4
 
25
#define EXEC_MJ_NEXTOUTER                               5
 
26
#define EXEC_MJ_TESTOUTER                               6
 
27
#define EXEC_MJ_NEXTINNER                               7
 
28
#define EXEC_MJ_SKIPOUTER_BEGIN                 8
 
29
#define EXEC_MJ_SKIPOUTER_TEST                  9
 
30
#define EXEC_MJ_SKIPOUTER_ADVANCE               10
 
31
#define EXEC_MJ_SKIPINNER_BEGIN                 11
 
32
#define EXEC_MJ_SKIPINNER_TEST                  12
 
33
#define EXEC_MJ_SKIPINNER_ADVANCE               13
 
34
#define EXEC_MJ_ENDOUTER                                14
 
35
#define EXEC_MJ_ENDINNER                                15
 
36
 
 
37
#endif   /* EXECDEFS_H */