From c4fda14845c3215a15aa9aa0b844119d2c28c475 Mon Sep 17 00:00:00 2001 From: Stephen Frost <sfrost@snowman.net> Date: Fri, 9 Jan 2015 11:01:31 -0500 Subject: [PATCH] Fix typo in execMain.c Wee -> We. Pointed out by Etsuro Fujita. --- src/backend/executor/execMain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c index 5b70cc90f65..fcc42fa0d8d 100644 --- a/src/backend/executor/execMain.c +++ b/src/backend/executor/execMain.c @@ -2024,7 +2024,7 @@ EvalPlanQualFetch(EState *estate, Relation relation, int lockmode, * heap_lock_tuple() will throw an error, and so would any later * attempt to update or delete the tuple. (We need not check cmax * because HeapTupleSatisfiesDirty will consider a tuple deleted - * by our transaction dead, regardless of cmax.) Wee just checked + * by our transaction dead, regardless of cmax.) We just checked * that priorXmax == xmin, so we can test that variable instead of * doing HeapTupleHeaderGetXmin again. */ -- GitLab