diff options
author | Michael Paquier <michael@paquier.xyz> | 2024-12-30 12:18:45 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2024-12-30 12:18:45 +0900 |
commit | ebf2ab40e5e1b0545257e8b27a1d48e9488c23f4 (patch) | |
tree | 45d3feb18def077860cef335bd71708695533bb5 | |
parent | 7e125b20eed65e61b07e2e9ef6901467e4f14272 (diff) | |
download | postgresql-ebf2ab40e5e1b0545257e8b27a1d48e9488c23f4.tar.gz postgresql-ebf2ab40e5e1b0545257e8b27a1d48e9488c23f4.zip |
Remove redundant wording in pg_statistic.h
Author: Junwang Zhao
Discussion: https://postgr.es/m/CAEG8a3JbMCHna=N5ZSx6huLnTDfW34kw7Pf2n8+3M-9UrrwesA@mail.gmail.com
-rw-r--r-- | src/include/catalog/pg_statistic.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/catalog/pg_statistic.h b/src/include/catalog/pg_statistic.h index 041e626390a..667782384ed 100644 --- a/src/include/catalog/pg_statistic.h +++ b/src/include/catalog/pg_statistic.h @@ -183,9 +183,9 @@ 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 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. + * variable-size, K 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. */ #define STATISTIC_KIND_MCV 1 |