1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

Get rid of COERCE_DONTCARE.

We don't need this hack any more.
This commit is contained in:
Tom Lane
2012-10-12 13:35:00 -04:00
parent 427fd88552
commit a29f7ed554
7 changed files with 16 additions and 18 deletions

View File

@ -1001,7 +1001,7 @@ build_aggregate_fnexprs(Oid *agg_input_types,
args,
InvalidOid,
agg_input_collation,
COERCE_DONTCARE);
COERCE_EXPLICIT_CALL);
/* see if we have a final function */
if (!OidIsValid(finalfn_oid))
@ -1027,5 +1027,5 @@ build_aggregate_fnexprs(Oid *agg_input_types,
args,
InvalidOid,
agg_input_collation,
COERCE_DONTCARE);
COERCE_EXPLICIT_CALL);
}