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

Method num_varbinary_cols

cpp/src/arrow/compute/row/row_internal.cc:28–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26namespace compute {
27
28uint32_t RowTableMetadata::num_varbinary_cols() const {
29 uint32_t result = 0;
30 for (auto column_metadata : column_metadatas) {
31 if (!column_metadata.is_fixed_length) {
32 ++result;
33 }
34 }
35 return result;
36}
37
38bool RowTableMetadata::is_compatible(const RowTableMetadata& other) const {
39 if (other.num_cols() != num_cols()) {

Callers 1

InitMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected