mirror of
https://github.com/postgres/postgres.git
synced 2025-08-09 17:03:00 +03:00
Add cast to quiet compiler warning.
This commit is contained in:
@@ -256,7 +256,7 @@ ExecAgg(Agg *node)
|
|||||||
for(i = 0; i < nagg; i++) {
|
for(i = 0; i < nagg; i++) {
|
||||||
AttrNumber attnum;
|
AttrNumber attnum;
|
||||||
int2 attlen;
|
int2 attlen;
|
||||||
Datum newVal = NULL;
|
Datum newVal = (Datum) NULL;
|
||||||
AggFuncInfo *aggfns = &aggFuncInfo[i];
|
AggFuncInfo *aggfns = &aggFuncInfo[i];
|
||||||
Datum args[2];
|
Datum args[2];
|
||||||
Node *tagnode = NULL;
|
Node *tagnode = NULL;
|
||||||
|
Reference in New Issue
Block a user