From 04328b51c9ceac2bd4ccc8d64f80c8256b3e54de Mon Sep 17 00:00:00 2001 From: James Winegar Date: Thu, 29 Apr 2021 21:36:44 -0500 Subject: [PATCH] Fix spelling error in time_bucket error message --- src/time_bucket.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/time_bucket.c b/src/time_bucket.c index 005482f97..071221a10 100644 --- a/src/time_bucket.c +++ b/src/time_bucket.c @@ -21,7 +21,7 @@ if (period <= 0) \ ereport(ERROR, \ (errcode(ERRCODE_INVALID_PARAMETER_VALUE), \ - errmsg("period must be greater then 0"))); \ + errmsg("period must be greater than 0"))); \ if (offset != 0) \ { \ /* We need to ensure that the timestamp is in range _after_ the */ \ @@ -105,7 +105,7 @@ ts_int64_bucket(PG_FUNCTION_ARGS) if (period <= 0) \ ereport(ERROR, \ (errcode(ERRCODE_INVALID_PARAMETER_VALUE), \ - errmsg("period must be greater then 0"))); \ + errmsg("period must be greater than 0"))); \ /* shift = shift % period, but use TMODULO */ \ TMODULO(shift, result, period); \ \