aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes/execnodes.h
diff options
context:
space:
mode:
authorJeff Davis <jdavis@postgresql.org>2019-12-06 11:47:59 -0800
committerJeff Davis <jdavis@postgresql.org>2019-12-06 11:49:59 -0800
commit30d47723fd151641e89d18ce775f1a102ff07ae2 (patch)
tree87efee485dfc64b3ac7b5581afbb0f6295c87870 /src/include/nodes/execnodes.h
parentfbbf68094c5ff3d513969d072126c92932e484da (diff)
downloadpostgresql-30d47723fd151641e89d18ce775f1a102ff07ae2.tar.gz
postgresql-30d47723fd151641e89d18ce775f1a102ff07ae2.zip
Fix comments in execGrouping.c
Commit 5dfc1981 missed updating some comments. Also, fix a comment typo found in passing. Author: Jeff Davis Discussion: https://postgr.es/m/9723131d247b919f94699152647fa87ee0bc02c2.camel%40j-davis.com
Diffstat (limited to 'src/include/nodes/execnodes.h')
-rw-r--r--src/include/nodes/execnodes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h
index 6eb647290be..692438d6dfd 100644
--- a/src/include/nodes/execnodes.h
+++ b/src/include/nodes/execnodes.h
@@ -2248,7 +2248,7 @@ typedef struct HashInstrumentation
int nbuckets_original; /* planned number of buckets */
int nbatch; /* number of batches at end of execution */
int nbatch_original; /* planned number of batches */
- size_t space_peak; /* speak memory usage in bytes */
+ size_t space_peak; /* peak memory usage in bytes */
} HashInstrumentation;
/* ----------------