| 100 | } |
| 101 | |
| 102 | arrow::Result<bool> ColumnMetadata::GetIsCaseSensitive() const { |
| 103 | std::string is_case_sensitive; |
| 104 | ARROW_ASSIGN_OR_RAISE(is_case_sensitive, metadata_map_->Get(kIsCaseSensitive)); |
| 105 | return StringToBoolean(is_case_sensitive); |
| 106 | } |
| 107 | |
| 108 | arrow::Result<bool> ColumnMetadata::GetIsReadOnly() const { |
| 109 | std::string is_read_only; |
no test coverage detected