Я выполняю запрос PostgreSQL через скрипт оболочки.
Ниже приведен запрос, используемый в скрипте:
запрос 1:
select table_schema, table_name, column_name
from information_schema.columns
where data_type like '%timestamp%'
and table_name not like '%_1_prt_%';
query2 :
select max(date_column)
from table_schema.table_name;
но во время выполнения скрипта я получаю эту ошибку:
NOTICE: One or more columns in the following table(s) do not have statistics: ops_support
HINT: For non-partitioned tables, run analyze <table_name>(<column_list>). For partitioned tables, run analyze rootpartition <table_name>(<column_list>).
See log for columns missing statistics
Не могли бы вы помочь мне устранить ошибку или почему я получаю приведенную ниже ошибку ??