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

Method GetIsReadOnly

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

Source from the content-addressed store, hash-verified

106}
107
108arrow::Result<bool> ColumnMetadata::GetIsReadOnly() const {
109 std::string is_read_only;
110 ARROW_ASSIGN_OR_RAISE(is_read_only, metadata_map_->Get(kIsReadOnly));
111 return StringToBoolean(is_read_only);
112}
113
114arrow::Result<bool> ColumnMetadata::GetIsSearchable() const {
115 std::string is_searchable;

Callers

nothing calls this directly

Calls 3

StringToBooleanFunction · 0.85
ARROW_ASSIGN_OR_RAISEFunction · 0.50
GetMethod · 0.45

Tested by

no test coverage detected