From: | Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com> |
---|---|
To: | postgann2020 s <postgann2020(at)gmail(dot)com>, pgsql-general(at)postgresql(dot)org, pgsql-admin(at)postgresql(dot)org, pgsql-performance(at)postgresql(dot)org |
Subject: | Re: Suggestion on table analyze |
Date: | 2020-05-21 14:41:37 |
Message-ID: | 0a0225d9-0e21-413f-8230-93a197748bde@aklaver.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin pgsql-general pgsql-performance |
On 5/21/20 7:18 AM, postgann2020 s wrote:
> Hi Team,
>
> Thanks for your support.
>
> Could you please suggest on below query.
>
> Environment
> PostgreSQL: 9.5.15
> Postgis: 2.2.7
>
> Mostly table contain GIS data.
>
> While analyzing the table getting below NOTICE. It seems is pretty
> understanding, but needs help on the below points.
>
> 1 . What might be the reason for getting the NOTICE?.
> 2. Is this lead to any problems in the future?.
>
> ANALYZE SCHEMA.TABLE;
>
> NOTICE: no non-null/empty features, unable to compute statistics
> NOTICE: no non-null/empty features, unable to compute statistics
> Query returned successfully with no result in 1.1 secs.
This is coming from PostGIS:
postgis/gserialized_estimate.c:
/* If there's no useful features, we can't work out stats */
if ( ! notnull_cnt )
{
elog(NOTICE, "no non-null/empty features, unable to
compute statistics");
stats->stats_valid = false;
return;
}
You might find more information from here:
Though FYI PostGIS 2.2.7 is past EOL:
>
> Thanks for your support.
>
> Regards,
> PostgAnn.
--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com
From | Date | Subject | |
---|---|---|---|
Next Message | postgann2020 s | 2020-05-21 14:44:37 | Re: Suggestion on index creation for TEXT data field |
Previous Message | postgann2020 s | 2020-05-21 14:37:30 | Suggestion on column cast automatically to data type |
From | Date | Subject | |
---|---|---|---|
Next Message | postgann2020 s | 2020-05-21 14:44:37 | Re: Suggestion on index creation for TEXT data field |
Previous Message | David G. Johnston | 2020-05-21 14:36:39 | Re: Suggestion on index creation for TEXT data field |
From | Date | Subject | |
---|---|---|---|
Next Message | postgann2020 s | 2020-05-21 14:44:37 | Re: Suggestion on index creation for TEXT data field |
Previous Message | David G. Johnston | 2020-05-21 14:36:39 | Re: Suggestion on index creation for TEXT data field |