diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-01-12 21:49:32 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-01-12 21:49:32 +0000 |
commit | e76bb5cfec543cbf9243f66bf020da9058c22aa4 (patch) | |
tree | 5175d1a1aa99b6e1bf2e587190803d42147f0647 /src/include/executor/executor.h | |
parent | 1937d8d9efcc0444525a8eb1f6fbc11fddb9512d (diff) | |
download | postgresql-e76bb5cfec543cbf9243f66bf020da9058c22aa4.tar.gz postgresql-e76bb5cfec543cbf9243f66bf020da9058c22aa4.zip |
Repair "Halloween problem" in EvalPlanQual: a tuple that's been inserted by
our own command (or more generally, xmin = our xact and cmin >= current
command ID) should not be seen as good. Else we may try to update rows
we already updated. This error was inserted last August while fixing the
even bigger problem that the old coding wouldn't see *any* tuples inserted
by our own transaction as good. Per report from Euler Taveira de Oliveira.
Diffstat (limited to 'src/include/executor/executor.h')
-rw-r--r-- | src/include/executor/executor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index 29a50a7f590..afa9798426a 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: executor.h,v 1.102.2.4 2005/08/25 22:07:21 tgl Exp $ + * $Id: executor.h,v 1.102.2.5 2006/01/12 21:49:32 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -98,7 +98,7 @@ extern bool ExecContextForcesOids(PlanState *planstate, bool *hasoids); extern void ExecConstraints(ResultRelInfo *resultRelInfo, TupleTableSlot *slot, EState *estate); extern TupleTableSlot *EvalPlanQual(EState *estate, Index rti, - ItemPointer tid, TransactionId priorXmax); + ItemPointer tid, TransactionId priorXmax, CommandId curCid); /* * prototypes from functions in execProcnode.c |