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 @@ -6596,7 +6596,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
6596
6596
<entry><type>char[]</type></entry>
6597
6597
<entry></entry>
6598
6598
<entry>
6599
- An array containing codes for the enabled statistic kinds;
6599
+ An array containing codes for the enabled statistics kinds;
6600
6600
valid values are:
6601
6601
<literal>d</literal> for n-distinct statistics,
6602
6602
<literal>f</literal> for functional dependency statistics, and
Original file line number Diff line number Diff line change @@ -646,7 +646,7 @@ statext_dependencies_load(Oid mvoid)
646
646
Anum_pg_statistic_ext_data_stxddependencies , & isnull );
647
647
if (isnull )
648
648
elog (ERROR ,
649
- "requested statistic kind \"%c\" is not yet built for statistics object %u" ,
649
+ "requested statistics kind \"%c\" is not yet built for statistics object %u" ,
650
650
STATS_EXT_DEPENDENCIES , mvoid );
651
651
652
652
result = statext_dependencies_deserialize (DatumGetByteaPP (deps ));
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ typedef struct StatExtEntry
60
60
char * schema ; /* statistics object's schema */
61
61
char * name ; /* statistics object's name */
62
62
Bitmapset * columns ; /* attribute numbers covered by the object */
63
- List * types ; /* 'char' list of enabled statistic kinds */
63
+ List * types ; /* 'char' list of enabled statistics kinds */
64
64
} StatExtEntry ;
65
65
66
66
Original file line number Diff line number Diff line change @@ -571,7 +571,7 @@ statext_mcv_load(Oid mvoid)
571
571
572
572
if (isnull )
573
573
elog (ERROR ,
574
- "requested statistic kind \"%c\" is not yet built for statistics object %u" ,
574
+ "requested statistics kind \"%c\" is not yet built for statistics object %u" ,
575
575
STATS_EXT_DEPENDENCIES , mvoid );
576
576
577
577
result = statext_mcv_deserialize (DatumGetByteaP (mcvlist ));
Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ statext_ndistinct_load(Oid mvoid)
154
154
Anum_pg_statistic_ext_data_stxdndistinct , & isnull );
155
155
if (isnull )
156
156
elog (ERROR ,
157
- "requested statistic kind \"%c\" is not yet built for statistics object %u" ,
157
+ "requested statistics kind \"%c\" is not yet built for statistics object %u" ,
158
158
STATS_EXT_NDISTINCT , mvoid );
159
159
160
160
result = statext_ndistinct_deserialize (DatumGetByteaPP (ndist ));
Original file line number Diff line number Diff line change @@ -878,7 +878,7 @@ typedef struct StatisticExtInfo
878
878
879
879
Oid statOid ; /* OID of the statistics row */
880
880
RelOptInfo * rel ; /* back-link to statistic's table */
881
- char kind ; /* statistic kind of this entry */
881
+ char kind ; /* statistics kind of this entry */
882
882
Bitmapset * keys ; /* attnums of the columns covered */
883
883
} StatisticExtInfo ;
884
884
You can’t perform that action at this time.
0 commit comments