diff options
author | Bruce Momjian <bruce@momjian.us> | 2016-08-03 10:32:32 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2016-08-03 10:32:32 -0400 |
commit | 6eb5b05d225006adaf38adc9f30637ee22521881 (patch) | |
tree | e2bd1a47af4eafcd31ea80bb338d97e49c9f550d /src | |
parent | 0a4d67b16cd6a0d435169e66a1b4911007cb6aef (diff) | |
download | postgresql-6eb5b05d225006adaf38adc9f30637ee22521881.tar.gz postgresql-6eb5b05d225006adaf38adc9f30637ee22521881.zip |
C comment: fix typo
Author: Amit Langote
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/sort/tuplesort.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/sort/tuplesort.c b/src/backend/utils/sort/tuplesort.c index 4c502bb2338..6756f2632d4 100644 --- a/src/backend/utils/sort/tuplesort.c +++ b/src/backend/utils/sort/tuplesort.c @@ -661,7 +661,7 @@ tuplesort_begin_common(int workMem, bool randomAccess) /* * Caller tuple (e.g. IndexTuple) memory context. * - * A dedicated child content used exclusively for caller passed tuples + * A dedicated child context used exclusively for caller passed tuples * eases memory management. Resetting at key points reduces * fragmentation. Note that the memtuples array of SortTuples is allocated * in the parent context, not this context, because there is no need to |