From 6bd323c6b3f65b26273d5efb7ddd0ac04d039546 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 15 Jun 1998 19:30:31 +0000 Subject: Remove un-needed braces around single statements. --- src/backend/executor/execUtils.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'src/backend/executor/execUtils.c') diff --git a/src/backend/executor/execUtils.c b/src/backend/executor/execUtils.c index 96f8f21128..1db49d391c 100644 --- a/src/backend/executor/execUtils.c +++ b/src/backend/executor/execUtils.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/execUtils.c,v 1.31 1998/04/27 04:05:41 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/execUtils.c,v 1.32 1998/06/15 19:28:20 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -804,9 +804,7 @@ ExecOpenIndices(Oid resultRelationOid, pfree(predString); } else - { predicate = NULL; - } /* ---------------- * save the index information into lists @@ -916,9 +914,7 @@ ExecOpenIndices(Oid resultRelationOid, i = 0; foreach(indexpreds, predList) - { indexInfoArray[i++]->ii_Predicate = lfirst(indexpreds); - } /* ---------------- * store the index info array into relation info * ---------------- @@ -1117,9 +1113,7 @@ ExecInsertIndexTuples(TupleTableSlot *slot, if (predicate != NULL) { if (econtext == NULL) - { econtext = makeNode(ExprContext); - } econtext->ecxt_scantuple = slot; /* Skip this index-update if the predicate isn't satisfied */ -- cgit v1.2.1