summaryrefslogtreecommitdiff
path: root/src/include/executor/executor.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-08-06 04:26:40 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-08-06 04:26:40 +0000
commit8ae23135bc60df9104b4b8aa1171a7b9b89f4926 (patch)
tree5db02ef1876e4c4946120b53ba2b38f74870e7e3 /src/include/executor/executor.h
parent925418d2fa9c8548de23df44d97d2db214839ba4 (diff)
Clean up inefficiency in ExecRelCheck, and cause it to do the right
thing when there are multiple result relations. Formerly, during something like 'UPDATE foo*', foo's constraints and *only* foo's constraints would be applied to all foo's children. Wrong-o ...
Diffstat (limited to 'src/include/executor/executor.h')
-rw-r--r--src/include/executor/executor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h
index b835b290440..7849e87a78a 100644
--- a/src/include/executor/executor.h
+++ b/src/include/executor/executor.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: executor.h,v 1.46 2000/07/12 02:37:30 tgl Exp $
+ * $Id: executor.h,v 1.47 2000/08/06 04:26:27 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -56,8 +56,8 @@ extern TupleDesc ExecutorStart(QueryDesc *queryDesc, EState *estate);
extern TupleTableSlot *ExecutorRun(QueryDesc *queryDesc, EState *estate,
int feature, Node *limoffset, Node *limcount);
extern void ExecutorEnd(QueryDesc *queryDesc, EState *estate);
-extern void ExecConstraints(char *caller, Relation rel, HeapTuple tuple,
- EState *estate);
+extern void ExecConstraints(char *caller, Relation rel,
+ TupleTableSlot *slot, EState *estate);
extern TupleTableSlot *EvalPlanQual(EState *estate, Index rti,
ItemPointer tid);