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

Function GetNullHandling

cpp/src/arrow/compute/expression.cc:335–341  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

333
334namespace {
335std::optional<compute::NullHandling::type> GetNullHandling(const Expression::Call& call) {
336 DCHECK_NE(call.function, nullptr);
337 if (call.function->kind() == compute::Function::SCALAR) {
338 return static_cast<const compute::ScalarKernel*>(call.kernel)->null_handling;
339 }
340 return std::nullopt;
341}
342} // namespace
343
344bool Expression::IsSatisfiable() const {

Callers 1

FoldConstantsFunction · 0.85

Calls 1

kindMethod · 0.45

Tested by

no test coverage detected