1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-30 21:42:05 +03:00
nodeAgg.c: WARN -> NOTICE for elog
parse_oper.c: was created after patch for fmgr_info, so function call wrong
scan.c: regenerated for i386_solaris using flex 2.5.4
gethostname.c: required prototype for gethostname() function
config.h.in: create prototype for isinfo() function

isinf.c: "fake" isinf() under i386_solaris using fpclass() call...
This commit is contained in:
Marc G. Fournier
1998-01-15 20:54:52 +00:00
parent baef78d96b
commit d876c25803
6 changed files with 28 additions and 10 deletions

View File

@ -437,7 +437,7 @@ ExecAgg(Agg *node)
args[0] = (char *) value2[i];
}
else
elog(WARN, "ExecAgg: no valid transition functions??");
elog(NOTICE, "ExecAgg: no valid transition functions??");
value1[i] = (Datum) fmgr_c(&aggfns->finalfn,
(FmgrValues *) args, &(nulls[i]));
}