]> granicus.if.org Git - postgis/commitdiff
Be less assertive in debug message printed when missing table stats
authorSandro Santilli <strk@kbt.io>
Thu, 29 Aug 2019 08:59:26 +0000 (08:59 +0000)
committerSandro Santilli <strk@kbt.io>
Thu, 29 Aug 2019 08:59:26 +0000 (08:59 +0000)
... running ANALYZE won't always fix the missing stats

git-svn-id: http://svn.osgeo.org/postgis/trunk@17781 b70326c6-7e19-0410-871a-916f4a2858ee

postgis/gserialized_estimate.c

index d87ce67b8035a83eb9b6a6d2caa79cab20c6c6f4..45e82ef786567182ab4ceb82c1f0406ddb4eda93 100644 (file)
@@ -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;
        }