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/include | |
| 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/include')
| -rw-r--r-- | src/include/nodes/pathnodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/nodes/pathnodes.h b/src/include/nodes/pathnodes.h index 5de52edda4a..b6d4b0eda0a 100644 --- a/src/include/nodes/pathnodes.h +++ b/src/include/nodes/pathnodes.h @@ -878,7 +878,7 @@ typedef struct StatisticExtInfo Oid statOid; /* OID of the statistics row */ RelOptInfo *rel; /* back-link to statistic's table */ - char kind; /* statistic kind of this entry */ + char kind; /* statistics kind of this entry */ Bitmapset *keys; /* attnums of the columns covered */ } StatisticExtInfo; |
