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

Function DropNull

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

Source from the content-addressed store, hash-verified

430// Dropnull functions
431
432Result<Datum> DropNull(const Datum& values, ExecContext* ctx) {
433 // Invoke metafunction which deals with Datum kinds other than just Array,
434 // ChunkedArray.
435 return CallFunction("drop_null", {values}, ctx);
436}
437
438Result<std::shared_ptr<Array>> DropNull(const Array& values, ExecContext* ctx) {
439 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