mirror of
https://github.com/postgres/postgres.git
synced 2025-11-18 02:02:55 +03:00
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
This commit is contained in:
@@ -153,7 +153,7 @@ statext_ndistinct_load(Oid mvoid)
|
||||
Anum_pg_statistic_ext_data_stxdndistinct, &isnull);
|
||||
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_NDISTINCT, mvoid);
|
||||
|
||||
result = statext_ndistinct_deserialize(DatumGetByteaPP(ndist));
|
||||
|
||||
Reference in New Issue
Block a user