From b4a64302a3456f3d2a4db216f92756315beca707 Mon Sep 17 00:00:00 2001 From: Man Zeng Date: Wed, 7 Jan 2026 19:06:06 +0800 Subject: [PATCH] This should be exists here instead of exits, consistent with commit 63ed3bc7f9a66035e0b741aaa542de35a90fe1cc. --- src/backend/utils/activity/pgstat_replslot.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/backend/utils/activity/pgstat_replslot.c b/src/backend/utils/activity/pgstat_replslot.c index ec161d48578..168ef8f8f45 100644 --- a/src/backend/utils/activity/pgstat_replslot.c +++ b/src/backend/utils/activity/pgstat_replslot.c @@ -47,9 +47,8 @@ pgstat_reset_replslot(const char *name) LWLockAcquire(ReplicationSlotControlLock, LW_SHARED); - /* Check if the slot exits with the given name. */ + /* Check if the slot exists with the given name. */ slot = SearchNamedReplicationSlot(name, false); - if (!slot) ereport(ERROR, (errcode(ERRCODE_INVALID_PARAMETER_VALUE), -- 2.43.0