diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2019-06-12 14:16:18 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2019-06-13 10:03:56 -0400 |
commit | b9768458154de6c001af23efc02514f120c6094f (patch) | |
tree | b73677b52e9122829b67e21384f3e0a1aa081102 /src/include/executor | |
parent | 4f41a7227511a3f96148b7f3d4ae6f0c350bc7b2 (diff) | |
download | postgresql-b9768458154de6c001af23efc02514f120c6094f.tar.gz postgresql-b9768458154de6c001af23efc02514f120c6094f.zip |
Fix double-word typos
Discussion: https://postgr.es/m/20190612184527.GA24266@alvherre.pgsql
Reviewed-by: Michaƫl Paquier
Diffstat (limited to 'src/include/executor')
-rw-r--r-- | src/include/executor/tuptable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/executor/tuptable.h b/src/include/executor/tuptable.h index d9122803863..0710a7dd388 100644 --- a/src/include/executor/tuptable.h +++ b/src/include/executor/tuptable.h @@ -59,7 +59,7 @@ * also that a virtual tuple does not have any "system columns". * * The Datum/isnull arrays of a TupleTableSlot serve double duty. For virtual - * slots they they are the authoritative data. For the other builtin slots, + * slots they are the authoritative data. For the other builtin slots, * the arrays contain data extracted from the tuple. (In this state, any * pass-by-reference Datums point into the physical tuple.) The extracted * information is built "lazily", ie, only as needed. This serves to avoid |