| 229 | class Field { |
| 230 | public: |
| 231 | Field(std::string name, DataTypePtr type, bool nullable = true, |
| 232 | std::unordered_map<std::string, std::string> metadata = {}) |
| 233 | : name_(std::move(name)), type_(std::move(type)), nullable_(nullable), |
| 234 | metadata_(std::move(metadata)) {} |
| 235 | |
| 236 | const std::string &name() const { return name_; } |
| 237 |
no outgoing calls