| 94 | } |
| 95 | |
| 96 | arrow::Result<bool> ColumnMetadata::GetIsAutoIncrement() const { |
| 97 | std::string auto_increment_string; |
| 98 | ARROW_ASSIGN_OR_RAISE(auto_increment_string, metadata_map_->Get(kIsAutoIncrement)); |
| 99 | return StringToBoolean(auto_increment_string); |
| 100 | } |
| 101 | |
| 102 | arrow::Result<bool> ColumnMetadata::GetIsCaseSensitive() const { |
| 103 | std::string is_case_sensitive; |
no test coverage detected