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

Function SetNullCount

cpp/src/arrow/array/data.h:358–358  ·  view source on GitHub ↗

\brief Set the cached physical null count \param v the number of nulls in the ArrayData This should only be used when initially populating the ArrayData, if it possible to compute the null count without visiting the entire validity bitmap. In most cases, relying on `GetNullCount` is sufficient.

Source from the content-addressed store, hash-verified

356 /// it possible to compute the null count without visiting the entire validity
357 /// bitmap. In most cases, relying on `GetNullCount` is sufficient.
358 void SetNullCount(int64_t v) { null_count.store(v); }
359
360 /// \brief Return the physical null count
361 ///

Callers 1

data.hFile · 0.85

Calls 1

storeMethod · 0.80

Tested by

no test coverage detected