@@ -119,7 +119,7 @@ typedef HashScanOpaqueData *HashScanOpaque;
119
119
#define HASH_VERSION 2/* 2 signifies only hash key value is stored */
120
120
121
121
/*
122
- *Spares [] holds the number of overflow pages currently allocated at or
122
+ *spares [] holds the number of overflow pages currently allocated at or
123
123
* before a certain splitpoint. For example, if spares[3] = 7 then there are
124
124
* 7 ovflpages before splitpoint 3 (compare BUCKET_TO_BLKNO macro). The
125
125
* value in spares[ovflpoint] increases as overflow pages are added at the
@@ -129,14 +129,14 @@ typedef HashScanOpaqueData *HashScanOpaque;
129
129
*
130
130
* ovflpages that have been recycled for reuse can be found by looking at
131
131
* bitmaps that are stored within ovflpages dedicated for the purpose.
132
- * The blknos of these bitmap pages are kept inbitmaps []; nmaps is the
132
+ * The blknos of these bitmap pages are kept inmapp []; nmaps is the
133
133
* number of currently existing bitmaps.
134
134
*
135
135
* The limitation on the size of spares[] comes from the fact that there's
136
136
* no point in having more than 2^32 buckets with only uint32 hashcodes.
137
137
* There is no particular upper limit on the size of mapp[], other than
138
138
* needing to fit into the metapage. (With 8K block size, 128 bitmaps
139
- * limit us to 64Gb of overflow space...)
139
+ * limit us to 64GB of overflow space...)
140
140
*/
141
141
#define HASH_MAX_SPLITPOINTS 32
142
142
#define HASH_MAX_BITMAPS 128