aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2023-10-31 11:02:04 -0400
committerBruce Momjian <bruce@momjian.us>2023-10-31 11:02:04 -0400
commit741ed2065c65b14c2edfc93c83fc8f8f5c033bfc (patch)
treeb6afeee1029657ad10beba370719cc5916dd68a1
parent87cf7b63c4b2e9e647cc9929051538a4f592ef3f (diff)
downloadpostgresql-741ed2065c65b14c2edfc93c83fc8f8f5c033bfc.tar.gz
postgresql-741ed2065c65b14c2edfc93c83fc8f8f5c033bfc.zip
C comment: adjust statistics mention
No need to talk about the statistics collector. Discussion: https://postgr.es/m/8a82417cdb6e8038fe276d4960e3207a@oss.nttdata.com Author: Álvaro Herrera Backpatch-through: master
-rw-r--r--src/include/catalog/pg_statistic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/catalog/pg_statistic.h b/src/include/catalog/pg_statistic.h
index 864cb54a51b..0808c5fc893 100644
--- a/src/include/catalog/pg_statistic.h
+++ b/src/include/catalog/pg_statistic.h
@@ -178,7 +178,7 @@ DECLARE_FOREIGN_KEY((starelid, staattnum), pg_attribute, (attrelid, attnum));
* the K most common non-null values appearing in the column, and stanumbers
* contains their frequencies (fractions of total row count). The values
* shall be ordered in decreasing frequency. Note that since the arrays are
- * variable-size, K may be chosen by the statistics collector. Values should
+ * variable-size, K may be chosen may be chosen at ANALYZE time. Values should
* not appear in MCV unless they have been observed to occur more than once;
* a unique column will have no MCV slot.
*/