aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Geoghegan <pg@bowt.ie>2020-06-17 15:23:55 -0700
committerPeter Geoghegan <pg@bowt.ie>2020-06-17 15:23:55 -0700
commit6924c37f772cd7701d3e1267a1fb3221ca159ba4 (patch)
treea52ac77229ff36af2debf6f930c4592320bae7d7 /src
parent4d4ca24efe8ebda9547337f47dcb61d3163be765 (diff)
downloadpostgresql-6924c37f772cd7701d3e1267a1fb3221ca159ba4.tar.gz
postgresql-6924c37f772cd7701d3e1267a1fb3221ca159ba4.zip
Fix nbtree.h dedup state comment.
Oversight in commit 0d861bbb.
Diffstat (limited to 'src')
-rw-r--r--src/include/access/nbtree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/nbtree.h b/src/include/access/nbtree.h
index 4e2b056b545..3b2bcb22a70 100644
--- a/src/include/access/nbtree.h
+++ b/src/include/access/nbtree.h
@@ -758,7 +758,7 @@ typedef struct BTDedupStateData
* will not become posting list tuples do not appear in the array (they
* are implicitly unchanged by deduplication pass).
*/
- int nintervals; /* current size of intervals array */
+ int nintervals; /* current number of intervals in array */
BTDedupInterval intervals[MaxIndexTuplesPerPage];
} BTDedupStateData;