typo fix in pgstat.c: "exits should be exists"
vignesh C <vignesh21@gmail.com>
From: vignesh C <vignesh21@gmail.com>
To: PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2021-04-06T04:57:31Z
Lists: pgsql-hackers
Attachments
- typo_stat_exits_to_exists.patch (text/x-patch) patch
Hi,
While reviewing replication statistics I found a small typo. Attached
patch for a typo in:
src/backend/postmaster/pgstat.c
................
/*
- * 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.
*/
................
Regards,
Vignesh
Commits
-
Fix typo in pgstat.c.
- f5d94e405e17 14.0 landed