File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -6575,7 +6575,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
6575
6575
<entry><type>char[]</type></entry>
6576
6576
<entry></entry>
6577
6577
<entry>
6578
- An array containing codes for the enabled statistic kinds;
6578
+ An array containing codes for the enabled statistics kinds;
6579
6579
valid values are:
6580
6580
<literal>d</literal> for n-distinct statistics,
6581
6581
<literal>f</literal> for functional dependency statistics
Original file line number Diff line number Diff line change @@ -642,7 +642,7 @@ statext_dependencies_load(Oid mvoid)
642
642
Anum_pg_statistic_ext_stxdependencies , & isnull );
643
643
if (isnull )
644
644
elog (ERROR ,
645
- "requested statistic kind \"%c\" is not yet built for statistics object %u" ,
645
+ "requested statistics kind \"%c\" is not yet built for statistics object %u" ,
646
646
STATS_EXT_DEPENDENCIES , mvoid );
647
647
648
648
result = statext_dependencies_deserialize (DatumGetByteaPP (deps ));
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ typedef struct StatExtEntry
44
44
char * schema ; /* statistics object's schema */
45
45
char * name ; /* statistics object's name */
46
46
Bitmapset * columns ; /* attribute numbers covered by the object */
47
- List * types ; /* 'char' list of enabled statistic kinds */
47
+ List * types ; /* 'char' list of enabled statistics kinds */
48
48
} StatExtEntry ;
49
49
50
50
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ statext_ndistinct_load(Oid mvoid)
139
139
Anum_pg_statistic_ext_stxndistinct , & isnull );
140
140
if (isnull )
141
141
elog (ERROR ,
142
- "requested statistic kind \"%c\" is not yet built for statistics object %u" ,
142
+ "requested statistics kind \"%c\" is not yet built for statistics object %u" ,
143
143
STATS_EXT_NDISTINCT , mvoid );
144
144
145
145
result = statext_ndistinct_deserialize (DatumGetByteaPP (ndist ));
Original file line number Diff line number Diff line change @@ -857,7 +857,7 @@ typedef struct StatisticExtInfo
857
857
858
858
Oid statOid ; /* OID of the statistics row */
859
859
RelOptInfo * rel ; /* back-link to statistic's table */
860
- char kind ; /* statistic kind of this entry */
860
+ char kind ; /* statistics kind of this entry */
861
861
Bitmapset * keys ; /* attnums of the columns covered */
862
862
} StatisticExtInfo ;
863
863
You can’t perform that action at this time.
0 commit comments