Commit f3707d07 authored by Tom Lane's avatar Tom Lane

Fix stupid oversight :-(

parent 7c7139cf
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.210 2003/05/28 16:03:56 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.211 2003/05/29 00:54:42 tgl Exp $
* *
* *
* INTERFACE ROUTINES * INTERFACE ROUTINES
...@@ -1602,6 +1602,10 @@ IndexBuildHeapScan(Relation heapRelation, ...@@ -1602,6 +1602,10 @@ IndexBuildHeapScan(Relation heapRelation,
MemoryContextReset(econtext->ecxt_per_tuple_memory); MemoryContextReset(econtext->ecxt_per_tuple_memory);
/* Set up for predicate or expression evaluation */
if (slot)
ExecStoreTuple(heapTuple, slot, InvalidBuffer, false);
/* /*
* In a partial index, discard tuples that don't satisfy the * In a partial index, discard tuples that don't satisfy the
* predicate. We can also discard recently-dead tuples, since * predicate. We can also discard recently-dead tuples, since
...@@ -1612,7 +1616,6 @@ IndexBuildHeapScan(Relation heapRelation, ...@@ -1612,7 +1616,6 @@ IndexBuildHeapScan(Relation heapRelation,
{ {
if (!tupleIsAlive) if (!tupleIsAlive)
continue; continue;
ExecStoreTuple(heapTuple, slot, InvalidBuffer, false);
if (!ExecQual(predicate, econtext, false)) if (!ExecQual(predicate, econtext, false))
continue; continue;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment