added comments for bitmapHasAll and bitmapHasAny

This commit is contained in:
Zhichang Yu 2019-06-05 11:26:13 +08:00
parent ddad564bab
commit 0e3f2d5faa

View File

@ -55,6 +55,12 @@ namespace ErrorCodes
*
* Two bitmap andnot calculation, return cardinality:
* bitmapAndnotCardinality: bitmap,bitmap -> integer
*
* Judge if a bitmap is superset of the another one:
* bitmapHasAll: bitmap,bitmap -> bool
*
* Judge if the intersection of two bitmap is nonempty:
* bitmapHasAny: bitmap,bitmap -> bool
*/
template <typename Name>