File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 32
32
* backend-local hashtable (pgStatEntryRefHash) in front of the shared
33
33
* hashtable, containing references (PgStat_EntryRef) to shared hashtable
34
34
* entries. The shared hashtable only needs to be accessed when no prior
35
- * reference is found in the local hashtable. Besides pointing to the the
35
+ * reference is found in the local hashtable. Besides pointing to the
36
36
* shared hashtable entry (PgStatShared_HashEntry) PgStat_EntryRef also
37
- * contains a pointer to the the shared statistics data, as a process-local
37
+ * contains a pointer to the shared statistics data, as a process-local
38
38
* address, to reduce access costs.
39
39
*
40
40
* The names for structs stored in shared memory are prefixed with
Original file line number Diff line number Diff line change @@ -296,9 +296,9 @@ static const char *const slru_names[] = {
296
296
* values in a copy of the stats data, which is protected by ->lock. See
297
297
* pgstat_fetch_stat_(archiver|bgwriter|checkpointer) for the reader side.
298
298
*
299
- * The only exception to that is the the stat_reset_timestamp in these
300
- * structs, which is protected by ->lock, because it has to be written by
301
- * another backend while resetting
299
+ * The only exception to that is the stat_reset_timestamp in these structs,
300
+ * which is protected by ->lock, because it has to be written by another
301
+ * backend while resetting.
302
302
* ----------
303
303
*/
304
304
You can’t perform that action at this time.
0 commit comments