mirror of
https://github.com/postgres/postgres.git
synced 2025-06-13 07:41:39 +03:00
pgindent run on all C files. Java run to follow. initdb/regression
tests pass.
This commit is contained in:
@ -21,7 +21,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/executor/nodeSetOp.c,v 1.4 2001/03/22 06:16:13 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/executor/nodeSetOp.c,v 1.5 2001/10/25 05:49:29 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -100,7 +100,6 @@ ExecSetOp(SetOp *node)
|
||||
|
||||
if (TupIsNull(resultTupleSlot))
|
||||
{
|
||||
|
||||
/*
|
||||
* First of group: save a copy in result slot, and reset
|
||||
* duplicate-counters for new group.
|
||||
@ -118,7 +117,6 @@ ExecSetOp(SetOp *node)
|
||||
}
|
||||
else if (setopstate->subplan_done)
|
||||
{
|
||||
|
||||
/*
|
||||
* Reached end of input, so finish processing final group
|
||||
*/
|
||||
@ -126,7 +124,6 @@ ExecSetOp(SetOp *node)
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
/*
|
||||
* Else test if the new tuple and the previously saved tuple
|
||||
* match.
|
||||
@ -144,7 +141,6 @@ ExecSetOp(SetOp *node)
|
||||
|
||||
if (endOfGroup)
|
||||
{
|
||||
|
||||
/*
|
||||
* We've reached the end of the group containing resultTuple.
|
||||
* Decide how many copies (if any) to emit. This logic is
|
||||
@ -187,7 +183,6 @@ ExecSetOp(SetOp *node)
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
/*
|
||||
* Current tuple is member of same group as resultTuple. Count
|
||||
* it in the appropriate counter.
|
||||
@ -294,8 +289,8 @@ int
|
||||
ExecCountSlotsSetOp(SetOp *node)
|
||||
{
|
||||
return ExecCountSlotsNode(outerPlan(node)) +
|
||||
ExecCountSlotsNode(innerPlan(node)) +
|
||||
SETOP_NSLOTS;
|
||||
ExecCountSlotsNode(innerPlan(node)) +
|
||||
SETOP_NSLOTS;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user