MCPcopy Create free account
hub / github.com/apache/arrow / InsertHashes

Method InsertHashes

cpp/src/parquet/bloom_filter.cc:487–491  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

485void BlockSplitBloomFilter::InsertHash(uint64_t hash) { InsertHashImpl(hash); }
486
487void BlockSplitBloomFilter::InsertHashes(const uint64_t* hashes, int num_values) {
488 for (int i = 0; i < num_values; ++i) {
489 InsertHashImpl(hashes[i]);
490 }
491}
492
493} // namespace parquet

Callers 6

UpdateMethod · 0.80
UpdateSpacedMethod · 0.80
UpdateBinaryBloomFilterFunction · 0.80
BM_BatchInsertHashFunction · 0.80
BM_FindExistingHashFunction · 0.80
BM_FindNonExistingHashFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected