From: Sandro Santilli Date: Thu, 29 Aug 2019 08:59:26 +0000 (+0000) Subject: Be less assertive in debug message printed when missing table stats X-Git-Tag: 3.0.0beta1~31 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f1f051f616868261445030e3509983efde5d80a6;p=postgis Be less assertive in debug message printed when missing table stats ... running ANALYZE won't always fix the missing stats git-svn-id: http://svn.osgeo.org/postgis/trunk@17781 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/postgis/gserialized_estimate.c b/postgis/gserialized_estimate.c index d87ce67b8..45e82ef78 100644 --- a/postgis/gserialized_estimate.c +++ b/postgis/gserialized_estimate.c @@ -2259,7 +2259,7 @@ gserialized_sel_internal(PlannerInfo *root, List *args, int varRelid, int mode) if (!vardata.statsTuple) { - elog(DEBUG1, "%s: no statistics available on table, run ANALYZE", __func__); + elog(DEBUG1, "%s: no statistics available on table, run ANALYZE?", __func__); return DEFAULT_ND_SEL; }