From dd5eaf194e47c2d27381086f3527a8d2cdeed86a Mon Sep 17 00:00:00 2001 From: Sergey Koposov Date: Fri, 12 Apr 2019 12:21:30 -0400 Subject: [PATCH] update the error message about the q3c_pixarea depth (thanks to Greg Hennessy) --- q3c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/q3c.c b/q3c.c index 0f18128..9ddef6d 100644 --- a/q3c.c +++ b/q3c.c @@ -200,7 +200,7 @@ Datum pgq3c_pixarea(PG_FUNCTION_ARGS) } if (depth > 30) { - elog(ERROR, "Invalid depth. It should be less than 30."); + elog(ERROR, "Invalid depth. It should be less than 31."); } res = q3c_pixarea(&hprm, ipix, depth);