From 303f4d1012a20102d9fec6f486da0b381184a718 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 5 Sep 2014 01:20:33 -0400 Subject: Assorted message fixes and improvements --- src/backend/executor/nodeWindowAgg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/executor/nodeWindowAgg.c') diff --git a/src/backend/executor/nodeWindowAgg.c b/src/backend/executor/nodeWindowAgg.c index a0470d3eab2..8657e2d39fe 100644 --- a/src/backend/executor/nodeWindowAgg.c +++ b/src/backend/executor/nodeWindowAgg.c @@ -344,13 +344,13 @@ advance_windowaggregate(WindowAggState *winstate, winstate->curaggcontext = NULL; /* - * Moving-aggregate transition functions must not return NULL, see + * Moving-aggregate transition functions must not return null, see * advance_windowaggregate_base(). */ if (fcinfo->isnull && OidIsValid(peraggstate->invtransfn_oid)) ereport(ERROR, (errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED), - errmsg("moving-aggregate transition function must not return NULL"))); + errmsg("moving-aggregate transition function must not return null"))); /* * We must track the number of rows included in transValue, since to -- cgit v1.2.3