MCPcopy Create free account
hub / github.com/apache/impala / ExtractValues

Function ExtractValues

be/src/util/roaring-bitmap-test.cc:189–197  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

187}
188
189vector<uint64_t> ExtractValues(const RoaringBitmap64& bitmap) {
190 vector<uint64_t> values;
191 RoaringBitmap64::Iterator it(bitmap);
192 while (it.HasValue()) {
193 values.push_back(it.Value());
194 it.Advance();
195 }
196 return values;
197}
198
199void CheckDeserialize(const vector<uint8_t>& serialized_bitmap,
200 const vector<uint64_t>& expected_values) {

Callers 3

CheckDeserializeFunction · 0.70
TESTFunction · 0.70

Calls 4

HasValueMethod · 0.80
push_backMethod · 0.80
ValueMethod · 0.45
AdvanceMethod · 0.45

Tested by

no test coverage detected