diff options
author | Tomas Vondra <tomas.vondra@postgresql.org> | 2021-03-23 04:51:53 +0100 |
---|---|---|
committer | Tomas Vondra <tomas.vondra@postgresql.org> | 2021-03-23 04:57:45 +0100 |
commit | 1c457b8b5194bb838b61b02c883ddac4a212ea7e (patch) | |
tree | 27f3d3be6aff1b538cc3a334a87962a7423127f3 /src/backend/statistics/mcv.c | |
parent | 4220e06f4c0c597c77e0170b4032c3cd10fb9555 (diff) |
Use correct spelling of statistics kind
A couple error messages and comments used 'statistic kind', not the
correct 'statistics kind'. Fix and backpatch all the way back to 10,
where extended statistics were introduced.
Backpatch-through: 10
Diffstat (limited to 'src/backend/statistics/mcv.c')
-rw-r--r-- | src/backend/statistics/mcv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/statistics/mcv.c b/src/backend/statistics/mcv.c index cec06f8c444..8443f412bad 100644 --- a/src/backend/statistics/mcv.c +++ b/src/backend/statistics/mcv.c @@ -571,7 +571,7 @@ statext_mcv_load(Oid mvoid) if (isnull) elog(ERROR, - "requested statistic kind \"%c\" is not yet built for statistics object %u", + "requested statistics kind \"%c\" is not yet built for statistics object %u", STATS_EXT_DEPENDENCIES, mvoid); result = statext_mcv_deserialize(DatumGetByteaP(mcvlist)); |