projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
63df35e
)
Fix compiler warning about unitialized variables.
author
Bruce Momjian
<
[email protected]
>
Sun, 1 Dec 1996 19:48:39 +0000
(19:48 +0000)
committer
Bruce Momjian
<
[email protected]
>
Sun, 1 Dec 1996 19:48:39 +0000
(19:48 +0000)
src/backend/executor/nodeAgg.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/executor/nodeAgg.c
b/src/backend/executor/nodeAgg.c
index bcc6bdebaf779cbf8b6316ad211da710f0aaa641..f069ee448d845ed33b7fac384fc6aeb915663311 100644
(file)
--- a/
src/backend/executor/nodeAgg.c
+++ b/
src/backend/executor/nodeAgg.c
@@
-256,10
+256,10
@@
ExecAgg(Agg *node)
for(i = 0; i < nagg; i++) {
AttrNumber attnum;
int2 attlen;
- Datum newVal;
+ Datum newVal
= NULL
;
AggFuncInfo *aggfns = &aggFuncInfo[i];
Datum args[2];
- Node *tagnode;
+ Node *tagnode
= NULL
;
switch(nodeTag(aggregates[i]->target))
{