diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2010-03-21 00:17:59 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2010-03-21 00:17:59 +0000 |
commit | c248d171209fb1468a68d4d623fe721497cab7ba (patch) | |
tree | 0a45505cb3515a72c788aaf97d73458d18db665a /src/backend/executor/nodeWindowAgg.c | |
parent | 1dff2a0f25badf7fc15a654172bf4e0bce964008 (diff) | |
download | postgresql-c248d171209fb1468a68d4d623fe721497cab7ba.tar.gz postgresql-c248d171209fb1468a68d4d623fe721497cab7ba.zip |
Message tuning
Diffstat (limited to 'src/backend/executor/nodeWindowAgg.c')
-rw-r--r-- | src/backend/executor/nodeWindowAgg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/executor/nodeWindowAgg.c b/src/backend/executor/nodeWindowAgg.c index 4d76981b02a..de6d0385e92 100644 --- a/src/backend/executor/nodeWindowAgg.c +++ b/src/backend/executor/nodeWindowAgg.c @@ -27,7 +27,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/executor/nodeWindowAgg.c,v 1.12 2010/02/26 02:00:42 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/executor/nodeWindowAgg.c,v 1.13 2010/03/21 00:17:58 petere Exp $ * *------------------------------------------------------------------------- */ @@ -1230,7 +1230,7 @@ ExecWindowAgg(WindowAggState *winstate) if (isnull) ereport(ERROR, (errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED), - errmsg("frame starting offset must not be NULL"))); + errmsg("frame starting offset must not be null"))); /* copy value into query-lifespan context */ get_typlenbyval(exprType((Node *) winstate->startOffset->expr), &len, &byval); @@ -1256,7 +1256,7 @@ ExecWindowAgg(WindowAggState *winstate) if (isnull) ereport(ERROR, (errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED), - errmsg("frame ending offset must not be NULL"))); + errmsg("frame ending offset must not be null"))); /* copy value into query-lifespan context */ get_typlenbyval(exprType((Node *) winstate->endOffset->expr), &len, &byval); |