diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2014-09-05 01:20:33 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2014-09-05 01:24:29 -0400 |
commit | a6283f97069e6f747bdc2052e9f755a9136a5edc (patch) | |
tree | bf75781e87f58fc93ffa6cbc55be5aff2d6a3d14 /src/backend/executor/nodeWindowAgg.c | |
parent | 7695f9701a8bf46bf385c96bce2e216ee2ccf93e (diff) | |
download | postgresql-a6283f97069e6f747bdc2052e9f755a9136a5edc.tar.gz postgresql-a6283f97069e6f747bdc2052e9f755a9136a5edc.zip |
Assorted message fixes and improvements
Diffstat (limited to 'src/backend/executor/nodeWindowAgg.c')
-rw-r--r-- | src/backend/executor/nodeWindowAgg.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 |