Commit 06ae669c authored by Robert Haas's avatar Robert Haas

Remove extra word from comment.

David Rowley, who also was the primary author of the patch that
added this function; the attribution in my previous commit,
84940644, was incorrect due to
sloppiness on my part.

Discussion: http://postgr.es/m/CAKJS1f_0iSiLQsf_c06AzOWAc3eS6ePjjVQFpcFv3W-O5aktnQ@mail.gmail.com
parent e4128ee7
...@@ -789,8 +789,8 @@ bms_add_members(Bitmapset *a, const Bitmapset *b) ...@@ -789,8 +789,8 @@ bms_add_members(Bitmapset *a, const Bitmapset *b)
* Add members in the range of 'lower' to 'upper' to the set. * Add members in the range of 'lower' to 'upper' to the set.
* *
* Note this could also be done by calling bms_add_member in a loop, however, * Note this could also be done by calling bms_add_member in a loop, however,
* using this function will be faster when the range is large as we work with * using this function will be faster when the range is large as we work at
* at the bitmapword level rather than at bit level. * the bitmapword level rather than at bit level.
*/ */
Bitmapset * Bitmapset *
bms_add_range(Bitmapset *a, int lower, int upper) bms_add_range(Bitmapset *a, int lower, int upper)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment