| 106 | } |
| 107 | |
| 108 | arrow::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 | |
| 114 | arrow::Result<bool> ColumnMetadata::GetIsSearchable() const { |
| 115 | std::string is_searchable; |
nothing calls this directly
no test coverage detected