| 80 | } |
| 81 | |
| 82 | arrow::Result<int32_t> ColumnMetadata::GetPrecision() const { |
| 83 | std::string precision_string; |
| 84 | ARROW_ASSIGN_OR_RAISE(precision_string, metadata_map_->Get(kPrecision)); |
| 85 | |
| 86 | return std::stoi(precision_string); |
| 87 | } |
| 88 | |
| 89 | arrow::Result<int32_t> ColumnMetadata::GetScale() const { |
| 90 | std::string scale_string; |
nothing calls this directly
no test coverage detected