diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2015-09-05 11:35:49 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2015-09-05 11:36:29 +0300 |
commit | 68f4b68e4e94d93941be54000c7f3dd8e11f9dee (patch) | |
tree | ee21ad1e90c1c594758048fc50e74be039a1f9f2 /src/backend/access/common/heaptuple.c | |
parent | 39ebb6466914632d69c669d6da74b614b1daf89f (diff) |
Fix misc typos.
Oskari Saarenmaa. Backpatch to stable branches where applicable.
Diffstat (limited to 'src/backend/access/common/heaptuple.c')
-rw-r--r-- | src/backend/access/common/heaptuple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/common/heaptuple.c b/src/backend/access/common/heaptuple.c index d51072cbec5..64ecb850f3d 100644 --- a/src/backend/access/common/heaptuple.c +++ b/src/backend/access/common/heaptuple.c @@ -807,7 +807,7 @@ heap_modify_tuple(HeapTuple tuple, * repl information, as appropriate. * * NOTE: it's debatable whether to use heap_deform_tuple() here or just - * heap_getattr() only the non-replaced colums. The latter could win if + * heap_getattr() only the non-replaced columns. The latter could win if * there are many replaced columns and few non-replaced ones. However, * heap_deform_tuple costs only O(N) while the heap_getattr way would cost * O(N^2) if there are many non-replaced columns, so it seems better to |