File tree 6 files changed +6
-6
lines changed 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -7326,7 +7326,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
7326
7326
<structfield>stxkind</structfield> <type>char[]</type>
7327
7327
</para>
7328
7328
<para>
7329
- An array containing codes for the enabled statistic kinds;
7329
+ An array containing codes for the enabled statistics kinds;
7330
7330
valid values are:
7331
7331
<literal>d</literal> for n-distinct statistics,
7332
7332
<literal>f</literal> for functional dependency statistics, and
Original file line number Diff line number Diff line change @@ -639,7 +639,7 @@ statext_dependencies_load(Oid mvoid)
639
639
Anum_pg_statistic_ext_data_stxddependencies , & isnull );
640
640
if (isnull )
641
641
elog (ERROR ,
642
- "requested statistic kind \"%c\" is not yet built for statistics object %u" ,
642
+ "requested statistics kind \"%c\" is not yet built for statistics object %u" ,
643
643
STATS_EXT_DEPENDENCIES , mvoid );
644
644
645
645
result = statext_dependencies_deserialize (DatumGetByteaPP (deps ));
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ typedef struct StatExtEntry
64
64
char * schema ; /* statistics object's schema */
65
65
char * name ; /* statistics object's name */
66
66
Bitmapset * columns ; /* attribute numbers covered by the object */
67
- List * types ; /* 'char' list of enabled statistic kinds */
67
+ List * types ; /* 'char' list of enabled statistics kinds */
68
68
int stattarget ; /* statistics target (-1 for default) */
69
69
} StatExtEntry ;
70
70
Original file line number Diff line number Diff line change @@ -569,7 +569,7 @@ statext_mcv_load(Oid mvoid)
569
569
570
570
if (isnull )
571
571
elog (ERROR ,
572
- "requested statistic kind \"%c\" is not yet built for statistics object %u" ,
572
+ "requested statistics kind \"%c\" is not yet built for statistics object %u" ,
573
573
STATS_EXT_DEPENDENCIES , mvoid );
574
574
575
575
result = statext_mcv_deserialize (DatumGetByteaP (mcvlist ));
Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ statext_ndistinct_load(Oid mvoid)
153
153
Anum_pg_statistic_ext_data_stxdndistinct , & isnull );
154
154
if (isnull )
155
155
elog (ERROR ,
156
- "requested statistic kind \"%c\" is not yet built for statistics object %u" ,
156
+ "requested statistics kind \"%c\" is not yet built for statistics object %u" ,
157
157
STATS_EXT_NDISTINCT , mvoid );
158
158
159
159
result = statext_ndistinct_deserialize (DatumGetByteaPP (ndist ));
Original file line number Diff line number Diff line change @@ -912,7 +912,7 @@ typedef struct StatisticExtInfo
912
912
913
913
Oid statOid ; /* OID of the statistics row */
914
914
RelOptInfo * rel ; /* back-link to statistic's table */
915
- char kind ; /* statistic kind of this entry */
915
+ char kind ; /* statistics kind of this entry */
916
916
Bitmapset * keys ; /* attnums of the columns covered */
917
917
} StatisticExtInfo ;
918
918
You can’t perform that action at this time.
0 commit comments