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

Method GetIsSearchable

cpp/src/arrow/flight/sql/column_metadata.cc:114–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

112}
113
114arrow::Result<bool> ColumnMetadata::GetIsSearchable() const {
115 std::string is_searchable;
116 ARROW_ASSIGN_OR_RAISE(is_searchable, metadata_map_->Get(kIsSearchable));
117 return StringToBoolean(is_searchable);
118}
119
120arrow::Result<std::string> ColumnMetadata::GetRemarks() const {
121 return metadata_map_->Get(kRemarks);

Callers 1

IsSearchableMethod · 0.80

Calls 3

StringToBooleanFunction · 0.85
ARROW_ASSIGN_OR_RAISEFunction · 0.50
GetMethod · 0.45

Tested by

no test coverage detected