diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-09-08 20:59:27 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-09-08 20:59:27 +0000 |
commit | 075cede74858a9a04e97097b1ccd555121516c20 (patch) | |
tree | d5143a60a71fcaa81e2134cea052717c19fec9b4 /src/backend/executor/nodeAgg.c | |
parent | 4f523a6f92f98e1b10e84b2d5a58b0ac3e2f8c2a (diff) | |
download | postgresql-075cede74858a9a04e97097b1ccd555121516c20.tar.gz postgresql-075cede74858a9a04e97097b1ccd555121516c20.zip |
Add typdefs to pgindent run.
Diffstat (limited to 'src/backend/executor/nodeAgg.c')
-rw-r--r-- | src/backend/executor/nodeAgg.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/backend/executor/nodeAgg.c b/src/backend/executor/nodeAgg.c index 92fa9bbe1ef..71646b67e00 100644 --- a/src/backend/executor/nodeAgg.c +++ b/src/backend/executor/nodeAgg.c @@ -45,9 +45,9 @@ typedef struct AggFuncInfo int xfn1_nargs; int xfn2_nargs; int finalfn_nargs; -} AggFuncInfo; +} AggFuncInfo; -static Datum aggGetAttr(TupleTableSlot * tuple, Aggreg * agg, bool * isNull); +static Datum aggGetAttr(TupleTableSlot * tuple, Aggreg *agg, bool * isNull); /* --------------------------------------- @@ -88,7 +88,7 @@ static Datum aggGetAttr(TupleTableSlot * tuple, Aggreg * agg, bool * isNull); * ------------------------------------------ */ TupleTableSlot * -ExecAgg(Agg * node) +ExecAgg(Agg *node) { AggState *aggstate; EState *estate; @@ -488,7 +488,7 @@ ExecAgg(Agg * node) * ----------------- */ bool -ExecInitAgg(Agg * node, EState * estate, Plan * parent) +ExecInitAgg(Agg *node, EState * estate, Plan * parent) { AggState *aggstate; Plan *outerPlan; @@ -551,7 +551,7 @@ ExecInitAgg(Agg * node, EState * estate, Plan * parent) } int -ExecCountSlotsAgg(Agg * node) +ExecCountSlotsAgg(Agg *node) { return ExecCountSlotsNode(outerPlan(node)) + ExecCountSlotsNode(innerPlan(node)) + @@ -564,7 +564,7 @@ ExecCountSlotsAgg(Agg * node) * ----------------------- */ void -ExecEndAgg(Agg * node) +ExecEndAgg(Agg *node) { AggState *aggstate; Plan *outerPlan; @@ -592,7 +592,7 @@ ExecEndAgg(Agg * node) */ static Datum aggGetAttr(TupleTableSlot * slot, - Aggreg * agg, + Aggreg *agg, bool * isNull) { Datum result; |