aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/float.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2012-02-24 11:04:45 +0200
committerPeter Eisentraut <peter_e@gmx.net>2012-02-24 11:04:45 +0200
commit9cfd800aab9ee3c3b0b2b11ab41e129cc92dc15b (patch)
treee542de2f7935d7a38ce7b24521c546e1608f6270 /src/backend/utils/adt/float.c
parent173e29aa5deefd9e71c183583ba37805c8102a72 (diff)
downloadpostgresql-9cfd800aab9ee3c3b0b2b11ab41e129cc92dc15b.tar.gz
postgresql-9cfd800aab9ee3c3b0b2b11ab41e129cc92dc15b.zip
Add some enumeration commas, for consistency
Diffstat (limited to 'src/backend/utils/adt/float.c')
-rw-r--r--src/backend/utils/adt/float.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/float.c b/src/backend/utils/adt/float.c
index 245030f531c..ca0042a1762 100644
--- a/src/backend/utils/adt/float.c
+++ b/src/backend/utils/adt/float.c
@@ -2750,7 +2750,7 @@ width_bucket_float8(PG_FUNCTION_ARGS)
if (isnan(operand) || isnan(bound1) || isnan(bound2))
ereport(ERROR,
(errcode(ERRCODE_INVALID_ARGUMENT_FOR_WIDTH_BUCKET_FUNCTION),
- errmsg("operand, lower bound and upper bound cannot be NaN")));
+ errmsg("operand, lower bound, and upper bound cannot be NaN")));
/* Note that we allow "operand" to be infinite */
if (isinf(bound1) || isinf(bound2))