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

Function DropNull

cpp/src/arrow/compute/api_vector.cc:435–439  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

433// Dropnull functions
434
435Result<Datum> DropNull(const Datum& values, ExecContext* ctx) {
436 // Invoke metafunction which deals with Datum kinds other than just Array,
437 // ChunkedArray.
438 return CallFunction("drop_null", {values}, ctx);
439}
440
441Result<std::shared_ptr<Array>> DropNull(const Array& values, ExecContext* ctx) {
442 ARROW_ASSIGN_OR_RAISE(Datum out, DropNull(Datum(values), ctx));

Callers 5

AssertDropNullArraysFunction · 0.85
DropNullJSONFunction · 0.85

Calls 2

CallFunctionFunction · 0.85
make_arrayMethod · 0.80

Tested by 5

AssertDropNullArraysFunction · 0.68
DropNullJSONFunction · 0.68