aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/execMain.c
diff options
context:
space:
mode:
authorStephen Frost <sfrost@snowman.net>2015-01-09 11:01:31 -0500
committerStephen Frost <sfrost@snowman.net>2015-01-09 11:07:35 -0500
commitc4fda14845c3215a15aa9aa0b844119d2c28c475 (patch)
tree28a6566c78d2892e69bb83b73ff3af1ca5133faf /src/backend/executor/execMain.c
parent045c68ad219047f42b3cf9ce0d0cda017979d16a (diff)
downloadpostgresql-c4fda14845c3215a15aa9aa0b844119d2c28c475.tar.gz
postgresql-c4fda14845c3215a15aa9aa0b844119d2c28c475.zip
Fix typo in execMain.c
Wee -> We. Pointed out by Etsuro Fujita.
Diffstat (limited to 'src/backend/executor/execMain.c')
-rw-r--r--src/backend/executor/execMain.c2
1 files changed, 1 insertions, 1 deletions
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.
*/