]> granicus.if.org Git - postgresql/commitdiff
Fix stupid oversight :-(
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 29 May 2003 00:54:42 +0000 (00:54 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 29 May 2003 00:54:42 +0000 (00:54 +0000)
src/backend/catalog/index.c

index 1399f960f71d0411e8b42a84ffb9787c9a2f5779..1bc66a5959e1be2a9d6e0d28148f29d3ad0e7b63 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * 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
@@ -1602,6 +1602,10 @@ IndexBuildHeapScan(Relation heapRelation,
 
                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
                 * predicate.  We can also discard recently-dead tuples, since
@@ -1612,7 +1616,6 @@ IndexBuildHeapScan(Relation heapRelation,
                {
                        if (!tupleIsAlive)
                                continue;
-                       ExecStoreTuple(heapTuple, slot, InvalidBuffer, false);
                        if (!ExecQual(predicate, econtext, false))
                                continue;
                }