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

Method CanReferenceFieldsByNames

cpp/src/arrow/type.cc:2396–2401  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2394}
2395
2396Status Schema::CanReferenceFieldsByNames(const std::vector<std::string>& names) const {
2397 for (const auto& name : names) {
2398 ARROW_RETURN_NOT_OK(CanReferenceFieldByName(name));
2399 }
2400 return Status::OK();
2401}
2402
2403FieldVector Schema::GetAllFieldsByName(std::string_view name) const {
2404 FieldVector result;

Callers 4

TEST_FFunction · 0.45
getFieldByNameMethod · 0.45
getColumnByNameMethod · 0.45
getColumnByNameMethod · 0.45

Calls 1

OKFunction · 0.70

Tested by 1

TEST_FFunction · 0.36