diff options
Diffstat (limited to 'src/backend/executor/nodeAgg.c')
-rw-r--r-- | src/backend/executor/nodeAgg.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/executor/nodeAgg.c b/src/backend/executor/nodeAgg.c index eb9a4b6bebc..e268bf3423f 100644 --- a/src/backend/executor/nodeAgg.c +++ b/src/backend/executor/nodeAgg.c @@ -170,7 +170,7 @@ ExecAgg(Agg *node) ObjectIdGetDatum(agg->basetype), 0, 0); if (!HeapTupleIsValid(aggTuple)) - elog(ABORT, "ExecAgg: cache lookup failed for aggregate \"%s\"(%s)", + elog(ERROR, "ExecAgg: cache lookup failed for aggregate \"%s\"(%s)", aggname, typeidTypeName(agg->basetype)); aggp = (Form_pg_aggregate) GETSTRUCT(aggTuple); @@ -204,7 +204,7 @@ ExecAgg(Agg *node) * ------------------------------------------ */ if (isNull2) - elog(ABORT, "ExecAgg: agginitval2 is null"); + elog(ERROR, "ExecAgg: agginitval2 is null"); } if (OidIsValid(xfn1_oid)) @@ -305,7 +305,7 @@ ExecAgg(Agg *node) &isNull, &isDone); break; default: - elog(ABORT, "ExecAgg: Bad Agg->Target for Agg %d", i); + elog(ERROR, "ExecAgg: Bad Agg->Target for Agg %d", i); } if (isNull && !aggregates[i]->usenulls) @@ -355,7 +355,7 @@ ExecAgg(Agg *node) break; default: - elog(ABORT, "ExecAgg: Bad Agg->Target for Agg %d", i); + elog(ERROR, "ExecAgg: Bad Agg->Target for Agg %d", i); } if (attlen == -1) { @@ -443,7 +443,7 @@ ExecAgg(Agg *node) args[0] = (char *) value2[i]; } else - elog(ABORT, "ExecAgg: no valid transition functions??"); + elog(ERROR, "ExecAgg: no valid transition functions??"); value1[i] = (Datum) fmgr_c(aggfns->finalfn, aggfns->finalfn_oid, aggfns->finalfn_nargs, (FmgrValues *) args, @@ -462,7 +462,7 @@ ExecAgg(Agg *node) value1[i] = value2[i]; } else - elog(ABORT, "ExecAgg: no valid transition functions??"); + elog(ERROR, "ExecAgg: no valid transition functions??"); } /* |