diff options
author | Fujii Masao <fujii@postgresql.org> | 2021-04-06 14:09:40 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2021-04-06 14:09:40 +0900 |
commit | f5d94e405e17a49487672316610630be2f9d0bb7 (patch) | |
tree | 93d95d222a07008f4250ffc0e9ffb366f944972a /src | |
parent | 43620e328617c1f41a2a54c8cee01723064e3ffa (diff) | |
download | postgresql-f5d94e405e17a49487672316610630be2f9d0bb7.tar.gz postgresql-f5d94e405e17a49487672316610630be2f9d0bb7.zip |
Fix typo in pgstat.c.
Introduced by 9868167500.
Author: Vignesh C
Discussion: https://postgr.es/m/CALDaNm1DqgaLBAJrtGznKk1sR1mH-augmp7LfGvxWwTUhah+rg@mail.gmail.com
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/postmaster/pgstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/postmaster/pgstat.c b/src/backend/postmaster/pgstat.c index 4c4b0720681..5ba776e7894 100644 --- a/src/backend/postmaster/pgstat.c +++ b/src/backend/postmaster/pgstat.c @@ -1504,7 +1504,7 @@ pgstat_reset_replslot_counter(const char *name) ReplicationSlot *slot; /* - * Check if the slot exits with the given name. It is possible that by + * Check if the slot exists with the given name. It is possible that by * the time this message is executed the slot is dropped but at least * this check will ensure that the given name is for a valid slot. */ |