summaryrefslogtreecommitdiff
path: root/src/include/nodes/execnodes.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2005-11-22 18:23:31 +0000
committerBruce Momjian <bruce@momjian.us>2005-11-22 18:23:31 +0000
commitbef7764835725e5d8468da1c139e9020be689b95 (patch)
tree71075b16ab6ed5152b31757e5dd65cd2b9383ba0 /src/include/nodes/execnodes.h
parentc8de36352fe72ae2265eb53a6e1bf334e4f24888 (diff)
Re-run pgindent, fixing a problem where comment lines after a blank
comment line where output as too long, and update typedefs for /lib directory. Also fix case where identifiers were used as variable names in the backend, but as typedefs in ecpg (favor the backend for indenting). Backpatch to 8.1.X.
Diffstat (limited to 'src/include/nodes/execnodes.h')
-rw-r--r--src/include/nodes/execnodes.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h
index 0c96e7545f9..0aead5234c0 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.139.2.1 2005/11/14 17:43:13 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/nodes/execnodes.h,v 1.139.2.2 2005/11/22 18:23:28 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -343,10 +343,10 @@ typedef struct EState
bool es_useEvalPlan; /* evaluating EPQ tuples? */
/*
- * this field added at end of struct to avoid post-release ABI breakage
- * in 8.1 series. It'll be in a more logical place in 8.2.
+ * this field added at end of struct to avoid post-release ABI breakage in
+ * 8.1 series. It'll be in a more logical place in 8.2.
*/
- TupleTableSlot *es_trig_tuple_slot; /* for trigger output tuples */
+ TupleTableSlot *es_trig_tuple_slot; /* for trigger output tuples */
} EState;
@@ -495,9 +495,9 @@ typedef struct FuncExprState
* We also need to store argument values across calls when evaluating a
* function-returning-set.
*
- * setArgsValid is true when we are evaluating a set-valued function and we
- * are in the middle of a call series; we want to pass the same argument
- * values to the function again (and again, until it returns
+ * setArgsValid is true when we are evaluating a set-valued function and
+ * we are in the middle of a call series; we want to pass the same
+ * argument values to the function again (and again, until it returns
* ExprEndResult).
*/
bool setArgsValid;