From: Stephen Frost Date: Fri, 9 Jan 2015 16:01:31 +0000 (-0500) Subject: Fix typo in execMain.c X-Git-Tag: REL9_5_ALPHA1~942 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=c4fda14845c3215a15aa9aa0b844119d2c28c475;p=postgresql.git Fix typo in execMain.c Wee -> We. Pointed out by Etsuro Fujita. --- 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. */