diff options
Diffstat (limited to 'src/include/nodes/execnodes.h')
-rw-r--r-- | src/include/nodes/execnodes.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index 7371f950070..062985aacf3 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/nodes/execnodes.h,v 1.145 2005/11/28 23:46:03 tgl Exp $ + * $PostgreSQL: pgsql/src/include/nodes/execnodes.h,v 1.146 2005/12/02 20:03:42 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -346,6 +346,15 @@ typedef struct EState } EState; +/* es_rowMarks is a list of these structs: */ +typedef struct ExecRowMark +{ + Relation relation; /* opened and RowShareLock'd relation */ + Index rti; /* its range table index */ + char resname[32]; /* name for its ctid junk attribute */ +} ExecRowMark; + + /* ---------------------------------------------------------------- * Tuple Hash Tables * |