53.30. pg_stats_ext
pg_stats_ext
The view pg_stats_ext provides access to information about each extended statistics object in the database, combining information stored in the pg_statistic_ext and pg_statistic_ext_data catalogs. This view allows access only to rows of pg_statistic_ext and pg_statistic_ext_data that correspond to tables the user owns, and therefore it is safe to allow public read access to this view.
pg_stats_ext is also designed to present the information in a more readable format than the underlying catalogs at the cost that its schema must be extended whenever new types of extended statistics are added to pg_statistic_ext.
Column Type Description |
|---|
schemaname Name of schema containing table |
tablename Name of table |
statistics_schemaname Name of schema containing extended statistics object |
statistics_name Name of extended statistics object |
statistics_owner Owner of the extended statistics object |
attnames Names of the columns included in the extended statistics object |
exprs Expressions included in the extended statistics object |
kinds Types of extended statistics object enabled for this record |
inherited If true, the stats include values from child tables, not just the values in the specified relation |
n_distinct N-distinct counts for combinations of column values. If greater than zero, the estimated number of distinct values in the combination. If less than zero, the negative of the number of distinct values divided by the number of rows. (The negated form is used when |
dependencies Functional dependency statistics |
most_common_vals A list of the most common combinations of values in the columns. (Null if no combinations seem to be more common than any others.) |
most_common_val_nulls A list of NULL flags for the most common combinations of values. (Null when most_common_vals is.) |
most_common_freqs A list of the frequencies of the most common combinations, i.e., number of occurrences of each divided by total number of rows. (Null when most_common_vals is.) |
most_common_base_freqs A list of the base frequencies of the most common combinations, i.e., product of per-value frequencies. (Null when most_common_vals is.) |
: pg_stats_ext Columns
The maximum number of entries in the array fields can be controlled on a column-by-column basis using the ALTER TABLE SET STATISTICS command, or globally by setting the [default_statistics_target (integer)
default_statistics_target configuration parameter](braised:ref/runtime-config-query#default-statistics-target-integer-default-statistics-target-configuration-parameter) run-time parameter.