aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/execProcnode.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2009-10-12 18:10:51 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2009-10-12 18:10:51 +0000
commit0adaf4cb312fe3eff83e786d6a0b53ae2cdc9302 (patch)
tree177cf2ea668d6fcabbafc37db4741813ea3f685d /src/backend/executor/execProcnode.c
parent05d249717d652f0b16960d8a58611e222f1f907b (diff)
downloadpostgresql-0adaf4cb312fe3eff83e786d6a0b53ae2cdc9302.tar.gz
postgresql-0adaf4cb312fe3eff83e786d6a0b53ae2cdc9302.zip
Move the handling of SELECT FOR UPDATE locking and rechecking out of
execMain.c and into a new plan node type LockRows. Like the recent change to put table updating into a ModifyTable plan node, this increases planning flexibility by allowing the operations to occur below the top level of the plan tree. It's necessary in any case to restore the previous behavior of having FOR UPDATE locking occur before ModifyTable does. This partially refactors EvalPlanQual to allow multiple rows-under-test to be inserted into the EPQ machinery before starting an EPQ test query. That isn't sufficient to fix EPQ's general bogosity in the face of plans that return multiple rows per test row, though. Since this patch is mostly about getting some plan node infrastructure in place and not about fixing ten-year-old bugs, I will leave EPQ improvements for another day. Another behavioral change that we could now think about is doing FOR UPDATE before LIMIT, but that too seems like it should be treated as a followon patch.
Diffstat (limited to 'src/backend/executor/execProcnode.c')
-rw-r--r--src/backend/executor/execProcnode.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/backend/executor/execProcnode.c b/src/backend/executor/execProcnode.c
index 5339a57b4f0..21b973d3f89 100644
--- a/src/backend/executor/execProcnode.c
+++ b/src/backend/executor/execProcnode.c
@@ -12,7 +12,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/executor/execProcnode.c,v 1.67 2009/10/10 01:43:47 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/executor/execProcnode.c,v 1.68 2009/10/12 18:10:41 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -91,6 +91,7 @@
#include "executor/nodeHashjoin.h"
#include "executor/nodeIndexscan.h"
#include "executor/nodeLimit.h"
+#include "executor/nodeLockRows.h"
#include "executor/nodeMaterial.h"
#include "executor/nodeMergejoin.h"
#include "executor/nodeModifyTable.h"
@@ -286,6 +287,11 @@ ExecInitNode(Plan *node, EState *estate, int eflags)
estate, eflags);
break;
+ case T_LockRows:
+ result = (PlanState *) ExecInitLockRows((LockRows *) node,
+ estate, eflags);
+ break;
+
case T_Limit:
result = (PlanState *) ExecInitLimit((Limit *) node,
estate, eflags);
@@ -456,6 +462,10 @@ ExecProcNode(PlanState *node)
result = ExecSetOp((SetOpState *) node);
break;
+ case T_LockRowsState:
+ result = ExecLockRows((LockRowsState *) node);
+ break;
+
case T_LimitState:
result = ExecLimit((LimitState *) node);
break;
@@ -676,6 +686,10 @@ ExecEndNode(PlanState *node)
ExecEndSetOp((SetOpState *) node);
break;
+ case T_LockRowsState:
+ ExecEndLockRows((LockRowsState *) node);
+ break;
+
case T_LimitState:
ExecEndLimit((LimitState *) node);
break;