PG_STATS_EXT_EXPRS
PG_STATS_EXT_EXPRS provides statistics about expressions stored in the PG_STATISTIC_DATA table. This view is supported only by clusters of version 8.2.1.200 or later.
Column |
Type |
Reference |
Description |
---|---|---|---|
schemaname |
name |
PG_NAMESPACE.nspname |
Name of the schema that contains the table |
tablename |
name |
PG_CLASS.relname |
Table name |
statistics_schemaname |
name |
- |
Name of the schema where expression objects whose statistics are collected is located |
statistics_name |
name |
- |
Name of the expression object whose statistics are collected |
statistics_owner |
name |
- |
Owner of the expression object whose statistics are collected |
expr |
text |
- |
Expression |
inherited |
boolean |
- |
If the value is true, the inherited subcolumns are included. If the value is false, only the columns in a specified table are included. |
null_frac |
real |
- |
Percentage of column entries that are null |
avg_width |
integer |
- |
Average width in bytes of column's entries |
n_distinct |
real |
- |
The negated form is used when ANALYZE believes that the number of distinct values is likely to increase as the table grows. The positive form is used when the column seems to have a fixed number of possible values. For example, -1 indicates a unique column in which the number of distinct values is the same as the number of rows. |
n_dndistinct |
real |
- |
Number of unique non-null data values in the dn1 column
|
most_common_vals |
anyarray |
- |
List of the most common values in a column. If this combination does not have the most common values, it will be NULL. |
most_common_freqs |
real[] |
- |
List of the frequencies of the most common values, that is, the number of occurrences of each value divided by the total number of rows. (NULL if most_common_vals is NULL) |
histogram_bounds |
anyarray |
- |
List of values that divide the column's values into groups of equal proportion. The values in most_common_vals, if present, are omitted from this histogram calculation. This column is null if the field data type does not have a < operator or if the most_common_vals list accounts for the entire population. |
correlation |
real |
- |
Statistical correlation between physical row ordering and logical ordering of the column values. It ranges from -1 to +1. When the value is near to -1 or +1, an index scan on the column is estimated to be cheaper than when it is near to zero, due to reduction of random access to the disk. This column is null if the column data type does not have a < operator. |
most_common_elems |
anyarray |
- |
Specifies a list of non-null element values most often appearing. |
most_common_elem_freqs |
real[] |
- |
Specifies a list of the frequencies of the most common element values. |
elem_count_histogram |
real[] |
- |
Specifies a histogram of the counts of distinct non-null element values. |
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot