Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 08abe0a

Browse files
committed
I used bad style of comments and ... commented out some code in
EvalPlanQualNext() when implemented it... -:) Uncommented...
1 parent ca234c3 commit 08abe0a

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

src/backend/executor/execMain.c

+9-11
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
*
2828
* IDENTIFICATION
29-
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.85 1999/05/25 22:40:57 momjian Exp $
29+
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.86 1999/06/06 15:14:40 vadim Exp $
3030
*
3131
*-------------------------------------------------------------------------
3232
*/
@@ -1824,11 +1824,10 @@ EvalPlanQual(EState *estate, Index rti, ItemPointer tid)
18241824
estate->es_evalPlanQual = (Pointer) epq;
18251825
}
18261826
else
1827-
{ /* this is the first (oldest) PQ epq->rti
1828-
* = 0; * - mark as
1829-
* free and estate->es_useEvalPlan =
1830-
* false; * continue Query execution
1831-
* return (NULL); */
1827+
{
1828+
epq->rti = 0; /* this is the first (oldest) */
1829+
estate->es_useEvalPlan = false; /* PQ - mark as free and */
1830+
return (NULL); /* continue Query execution */
18321831
}
18331832
}
18341833

@@ -1872,11 +1871,10 @@ lpqnext:;
18721871
/* pop old PQ from the stack */
18731872
oldepq = (evalPlanQual *) epqstate->es_evalPlanQual;
18741873
if (oldepq == (evalPlanQual *) NULL)
1875-
{ /* this is the first (oldest) */
1876-
epq->rti = 0; /* PQ - mark as free and */
1877-
estate->es_useEvalPlan = false; /* continue Query
1878-
* execution */
1879-
return (NULL);
1874+
{
1875+
epq->rti = 0; /* this is the first (oldest) */
1876+
estate->es_useEvalPlan = false; /* PQ - mark as free and */
1877+
return (NULL); /* continue Query execution */
18801878
}
18811879
Assert(oldepq->rti != 0);
18821880
/* push current PQ to freePQ stack */

0 commit comments

Comments
 (0)