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

Method is_nested

cpp/src/parquet/types.cc:859–863  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

857}
858bool LogicalType::is_invalid() const { return !is_valid(); }
859bool LogicalType::is_nested() const {
860 return impl_->type() == LogicalType::Type::LIST ||
861 impl_->type() == LogicalType::Type::MAP ||
862 impl_->type() == LogicalType::Type::VARIANT;
863}
864bool LogicalType::is_nonnested() const { return !is_nested(); }
865bool LogicalType::is_serialized() const { return impl_->is_serialized(); }
866

Callers 4

test_is_nested_or_structFunction · 0.45
PrimitiveNodeMethod · 0.45
GroupNodeMethod · 0.45

Calls 1

typeMethod · 0.45

Tested by 2

test_is_nested_or_structFunction · 0.36