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 @@ -7370,7 +7370,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
7370
7370
<structfield>stxkind</structfield> <type>char[]</type>
7371
7371
</para>
7372
7372
<para>
7373
- An array containing codes for the enabled statistic kinds;
7373
+ An array containing codes for the enabled statistics kinds;
7374
7374
valid values are:
7375
7375
<literal>d</literal> for n-distinct statistics,
7376
7376
<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 @@ -570,7 +570,7 @@ statext_mcv_load(Oid mvoid)
570
570
571
571
if (isnull )
572
572
elog (ERROR ,
573
- "requested statistic kind \"%c\" is not yet built for statistics object %u" ,
573
+ "requested statistics kind \"%c\" is not yet built for statistics object %u" ,
574
574
STATS_EXT_DEPENDENCIES , mvoid );
575
575
576
576
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 @@ -923,7 +923,7 @@ typedef struct StatisticExtInfo
923
923
924
924
Oid statOid ; /* OID of the statistics row */
925
925
RelOptInfo * rel ; /* back-link to statistic's table */
926
- char kind ; /* statistic kind of this entry */
926
+ char kind ; /* statistics kind of this entry */
927
927
Bitmapset * keys ; /* attnums of the columns covered */
928
928
} StatisticExtInfo ;
929
929
You can’t perform that action at this time.
0 commit comments