mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Fix misc typos in comments.
Spotted mostly by Fabien Coelho. Discussion: https://www.postgresql.org/message-id/alpine.DEB.2.21.1901230947050.16643@lancre
This commit is contained in:
2
src/backend/utils/cache/inval.c
vendored
2
src/backend/utils/cache/inval.c
vendored
@ -8,7 +8,7 @@
|
||||
* When a tuple is updated or deleted, our standard visibility rules
|
||||
* consider that it is *still valid* so long as we are in the same command,
|
||||
* ie, until the next CommandCounterIncrement() or transaction commit.
|
||||
* (See acces/heap/heapam_visibility.c, and note that system catalogs are
|
||||
* (See access/heap/heapam_visibility.c, and note that system catalogs are
|
||||
* generally scanned under the most current snapshot available, rather than
|
||||
* the transaction snapshot.) At the command boundary, the old tuple stops
|
||||
* being valid and the new version, if any, becomes valid. Therefore,
|
||||
|
2
src/backend/utils/cache/typcache.c
vendored
2
src/backend/utils/cache/typcache.c
vendored
@ -151,7 +151,7 @@ typedef struct RecordCacheEntry
|
||||
|
||||
/*
|
||||
* To deal with non-anonymous record types that are exchanged by backends
|
||||
* involved in a parallel query, we also need a shared verion of the above.
|
||||
* involved in a parallel query, we also need a shared version of the above.
|
||||
*/
|
||||
struct SharedRecordTypmodRegistry
|
||||
{
|
||||
|
Reference in New Issue
Block a user